Searched refs:socket (Results 326 - 350 of 1132) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/bgpd/
H A Dbgp_network.c65 zlog_err ("[Error] BGP socket accept failed (%s)", strerror (errno));
120 /* BGP socket bind. */
214 /* Make socket for the peer. */
219 /* If we can get socket for the peer, adjest TTL and make connection. */
226 /* Bind socket. */
267 /* IPv6 supported version of BGP server socket setup. */
301 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
304 zlog_err ("socket: %s", strerror (errno));
344 sock = socket (AF_INET, SOCK_STREAM, 0);
347 zlog_err ("socket
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/plugins/rp-pppoe/
H A Dpppoe.h51 #include <sys/socket.h>
140 #include <sys/socket.h>
253 int discoverySocket; /* Raw socket for discovery frames */
254 int sessionSocket; /* Raw socket for session frames */
265 int noDiscoverySocket; /* Don't even open discovery socket */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/tridge/
H A Dsmb.conf16 socket options = TCP_NODELAY
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/packaging/Debian/debian-stable/
H A Dsmb.conf149 socket options = TCP_NODELAY
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/packaging/Debian/debian-unstable/
H A Dsmb.conf149 socket options = TCP_NODELAY
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/packaging/Mandrake/
H A Dsmb.conf163 socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iproute2/tc/
H A Dq_atm.c14 #include <sys/socket.h>
153 s = socket(addr.sas_family,SOCK_DGRAM,0);
155 perror("socket");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgcrypt-1.5.0/random/
H A Drandom-daemon.c27 that we need to use IPC (i.e. unix domain socket) to convey
37 #include <sys/socket.h>
49 /* This is default socket name we use in case the provided socket name
56 /* The socket connected to the daemon. */
59 /* Creates a socket connected to the daemon. On success, store the
60 socket fd in *SOCK. Returns error code. */
72 /* Create a socket. */
73 fd = socket (AF_UNIX, SOCK_STREAM, 0);
76 log_error ("can't create socket
[all...]
H A Drndegd.c30 #include <sys/socket.h>
43 /* Allocated name of the socket if supplied at runtime. */
187 fd = socket(AF_UNIX, SOCK_STREAM, 0);
189 log_fatal("can't create unix domain socket: %s\n", strerror(errno) );
193 log_fatal("can't connect to EGD socket `%s': %s\n",
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dgetrandom.c28 #include <sys/socket.h>
97 " --socket NAME Name of sockket to connect to\n"
149 else if (!strcmp (*argv, "--socket") && argc > 1 )
194 /* Create a socket. */
195 fd = socket (AF_UNIX, SOCK_STREAM, 0);
198 logit ("can't create socket: %s", strerror (errno));
211 logit ("socket name `%s' too long", socketname);
220 logit ("error connecting socket `%s': %s",
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/
H A Dcompat.c19 #include <linux/socket.h>
418 static int do_set_attach_filter(struct socket *sock, int level, int optname,
438 static int do_set_sock_timeout(struct socket *sock, int level,
460 static int compat_sock_setsockopt(struct socket *sock, int level, int optname,
476 struct socket *sock;
507 static int do_get_sock_timeout(struct socket *sock, int level, int optname,
536 static int compat_sock_getsockopt(struct socket *sock, int level, int optname,
596 struct socket *sock;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/core/
H A Dscm.c20 #include <linux/socket.h>
113 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *p)
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/uuid/
H A Dgen_uuid.c48 #include <sys/socket.h>
154 sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/libiproute/
H A Diplink.c11 //#include <sys/socket.h>
35 fd = socket(PF_INET, SOCK_DGRAM, 0);
38 fd = socket(PF_PACKET, SOCK_DGRAM, 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/udhcp/
H A Dpacket.c42 /* read a packet from socket fd, return -1 on read error, -2 on packet error */
51 DEBUG("cannot read on listening socket, ignoring");
118 fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
120 bb_perror_msg("socket");
175 fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/udev/
H A Dudev_device.c28 #include <sys/socket.h>
91 sk = socket(PF_INET, SOCK_DGRAM, 0);
93 err("error opening socket: %s", strerror(errno));
H A Dudev_utils_run.c27 #include <sys/socket.h>
47 dbg("pass environment to socket '%s'", sockname);
48 sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
65 info("passed %zi bytes to socket '%s', ", count, sockname);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/netlink/
H A Daf_netlink.c18 * the kernel socket in case userspace opens
19 * socket of same protocol
34 #include <linux/socket.h>
153 printk("Freeing alive netlink socket %p\n", sk);
383 static int __netlink_create(struct socket *sock, struct mutex *cb_mutex,
411 static int netlink_create(struct socket *sock, int protocol)
453 static int netlink_release(struct socket *sock)
502 static int netlink_autobind(struct socket *sock)
540 static inline int netlink_capable(struct socket *sock, unsigned int flag)
580 static int netlink_bind(struct socket *soc
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/rose/
H A Daf_rose.c19 #include <linux/socket.h>
216 * Add a socket to the bound sockets list.
227 * Find a socket that wants to accept the Call Request we just
260 * Find a connected ROSE socket given my LCI and device.
332 /* Queue the unaccepted socket for death */
355 * ROSE socket object.
358 static int rose_setsockopt(struct socket *sock, int level, int optname,
418 static int rose_getsockopt(struct socket *sock, int level, int optname,
476 static int rose_listen(struct socket *sock, int backlog)
501 static int rose_create(struct socket *soc
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/
H A Dminissdp.c37 #include <sys/socket.h>
78 /* Open and configure the socket listening for
87 if( (s = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
89 DPRINTF(E_ERROR, L_SSDP, "socket(udp): %s\n", strerror(errno));
128 /* open the UDP socket used to send SSDP notifications to
140 if( (s = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
142 DPRINTF(E_ERROR, L_SSDP, "socket(udp_notify): %s\n", strerror(errno));
402 s = socket(PF_INET, SOCK_STREAM, 0);
803 s = socket(AF_UNIX, SOCK_STREAM, 0);
805 DPRINTF(E_ERROR, L_SSDP, "socket(uni
[all...]
H A Dminidlna.c55 #include <sys/socket.h>
101 * setup the socket used to handle incoming HTTP connections. */
112 if( (s = socket(PF_INET, SOCK_STREAM, 0)) < 0)
114 DPRINTF(E_ERROR, L_GENERAL, "socket(http): %s\n", strerror(errno));
991 DPRINTF(E_INFO, L_GENERAL, "Failed to open socket for receiving SSDP. Trying to use MiniSSDPd\n");
997 /* open socket for HTTP connections. Listen on the 1st LAN address */
1001 DPRINTF(E_FATAL, L_GENERAL, "Failed to open socket for HTTP. EXITING\n");
1005 /* open socket for sending notifications */
1021 /* open socket for sending Tivo notifications */
1138 if((e->socket >
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/block/
H A Dnbd.c119 static int sock_xmit(struct socket *sock, int send, void *buf, int size,
180 static inline int sock_send_bvec(struct socket *sock, struct bio_vec *bvec,
196 struct socket *sock = lo->sock;
278 static inline int sock_recv_bvec(struct socket *sock, struct bio_vec *bvec)
294 struct socket *sock = lo->sock;
457 printk(KERN_ERR "%s: Attempted send on closed socket\n",
583 printk(KERN_WARNING "%s: shutting down socket\n",
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/
H A Dminidlna.c17 #include <sys/socket.h>
60 * setup the socket used to handle incoming HTTP connections. */
71 if( (s = socket(PF_INET, SOCK_STREAM, 0)) < 0)
73 DPRINTF(E_ERROR, L_GENERAL, "socket(http): %s\n", strerror(errno));
776 DPRINTF(E_FATAL, L_GENERAL, "Failed to open socket for receiving SSDP. EXITING\n");
778 /* open socket for HTTP connections. Listen on the 1st LAN address */
782 DPRINTF(E_FATAL, L_GENERAL, "Failed to open socket for HTTP. EXITING\n");
786 /* open socket for sending notifications */
802 /* open socket for sending Tivo notifications */
910 if((e->socket >
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/
H A Dminidlna.c17 #include <sys/socket.h>
66 * setup the socket used to handle incoming HTTP connections. */
77 if( (s = socket(PF_INET, SOCK_STREAM, 0)) < 0)
79 DPRINTF(E_ERROR, L_GENERAL, "socket(http): %s\n", strerror(errno));
837 DPRINTF(E_FATAL, L_GENERAL, "Failed to open socket for receiving SSDP. EXITING\n");
839 /* open socket for HTTP connections. Listen on the 1st LAN address */
843 DPRINTF(E_FATAL, L_GENERAL, "Failed to open socket for HTTP. EXITING\n");
847 /* open socket for sending notifications */
863 /* open socket for sending Tivo notifications */
987 if((e->socket >
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dsys_sunos32.c49 #include <linux/socket.h>
60 #include <linux/socket.h>
598 /* Bind the socket on a local reserved port and connect it to the
610 struct socket *socket;
620 socket = SOCKET_I(inode);
628 ret = socket->ops->bind(socket, (struct sockaddr*)&local,
642 ret = socket->ops->connect (socket, (struc
[all...]

Completed in 371 milliseconds

<<11121314151617181920>>