taglinefilesource code
how797net/socket.csys_shutdown( int fd, int how)
how802net/socket.cPRINTK(("sys_shutdown (fd = %d, how = %d)\n",fd, how));
how811net/socket.creturn (sock->ops->shutdown (sock, how));
how158net/tcp/sock.cstatic int ip_proto_shutdown (struct socket *sock, int how);
how1588net/tcp/sock.cip_proto_shutdown (struct socket *sock, int how)
how1593net/tcp/sock.chow++; /* maps 0->1 has the advantage of making bit 1 rcvs and
how1596net/tcp/sock.cif (how & ~SHUTDOWN_MASK) return (-EINVAL);
how1607net/tcp/sock.csk->shutdown |= how;
how1609net/tcp/sock.csk->prot->shutdown (sk, how);
how146net/tcp/sock.hvoid (*shutdown) (volatile struct sock *sk, int how);
how1424net/tcp/tcp.ctcp_shutdown (volatile struct sock *sk, int how)
how1443net/tcp/tcp.cif (!(how & SEND_SHUTDOWN)) return;
how75net/unix.cstatic int unix_proto_shutdown (struct socket *sock, int how);
how170net/unix.cunix_proto_shutdown (struct socket *sock, int how)