SHUTDOWN(2) Sistem Çağrıları  SHUTDOWN(2)

İSİM

shutdown — tam çift yönlü bağlantının bir kısmını kapatır

BİLDİRİM


    #include <sys/socket.h>
   
int shutdown (int sockfd, int how);

AÇIKLAMA

shutdown() çağrısı, sockfd ile ilişkilendirilmiş soket üzerindeki tam çift yönlü bağlantının tamamının veya bir kısmının kapatılmasına neden olur. Eğer how değişkeninde SHUT_RD belirtilirse başka alıma, SHUT_WR belirtilirse başka gönderime izin verilmez. Eğer how değiştigesi SHUT_RDWR olarak belirtilirse artık alıma ve gönderime izin verilmez.

DÖNÜŞ DEĞERİ

Başarı durumunda sıfır döner. Hata oluşursa -1 döner ve hata errno değişkenine atanır.

HATA SABİTLERİ

EBADF

sockfd, geçerli bir dosya tanıtıcısı değil.

EINVAL

how için geçersiz bir değer belirtilmiş ( “HATA AYIKLAMA” bölümüne bakın).

ENOTCONN

Belirtilen soket bağlanmamış.

ENOTSOCK

Belirtilen dosya tanıtıcısı sockfd bir soketle ilgili değil.

UYUMLULUK

POSIX.1-2001, POSIX.1-2008, 4.4BSD (shutdown() ilk defa 4.2BSD ile ortaya çıktı).

EK BİLGİ

SHUT_RD, SHUT_WR ve SHUT_RDWR sabitleri sırasıyla 0, 1, ve 2 değerlerine sahiptir, bu sabitler glibc-2.1.91'den itibaren <sys/socket.h> içerisinde tanımlanmıştır.

HATA AYIKLAMA

how değişkeninin geçerliliği için sınamalar alana özgü kodda yapılır, Linux 3.7'den önce çoğu alan kodu bu geçerliliği sınamıyordu. En önemlisi, UNIX alan soketleri geçersiz değerleri görmezden geliyordu. UNIX alan soketlerindeki bu sorun Linux 3.7 ile düzeltildi.

İLGİLİ BELGELER

close(2), connect(2), socket(2), socket(7)

ÇEVİREN

© 2022 Fatih Koçer
Bu çeviri özgür yazılımdır: Yasaların izin verdiği ölçüde HİÇBİR GARANTİ YOKTUR.
Lütfen, çeviri ile ilgili bildirimde bulunmak veya çeviri yapmak için https://github.com/TLBP/manpages-tr/issues adresinde "New Issue" düğmesine tıklayıp yeni bir konu açınız ve isteğinizi belirtiniz.
Yasal Uyarı
 * Özgün Belgenin Lisans ve Telif Hakkı bilgileri:
 *
 * Copyright (c) 1983, 1991 The Regents of the University of California.
 * All rights reserved.
 *
 * %%%LICENSE_START(BSD_4_CLAUSE_UCB)
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 * This product includes software developed by the University of
 * California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * %%%LICENSE_END
 *
 *     $Id: shutdown.2,v 1.1.1.1 1999/03/21 22:52:23 freitag Exp $
 *
 * Modified Sat Jul 24 09:57:55 1993 by Rik Faith <faith@cs.unc.edu>
 * Modified Tue Oct 22 22:04:51 1996 by Eric S. Raymond <esr@thyrsus.com>
 * Modified 1998 by Andi Kleen