summaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-03 01:13:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-03 01:13:04 +0000
commit992e05b6f070562d83f9238b227e1ddbf951c9af (patch)
treec64729c60f929f3007b4ed93543291b52cb50a02 /include/libbb.h
parentcea0a8bccbb0d98eb0e7423e6fff0d8529db8efe (diff)
downloadbusybox-w32-992e05b6f070562d83f9238b227e1ddbf951c9af.tar.gz
busybox-w32-992e05b6f070562d83f9238b227e1ddbf951c9af.tar.bz2
busybox-w32-992e05b6f070562d83f9238b227e1ddbf951c9af.zip
udpsvd: more work on it. works in limited testing.
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index b802e01d3..e5413b1a4 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -321,6 +321,17 @@ typedef struct len_and_sockaddr {
321#endif 321#endif
322 }; 322 };
323} len_and_sockaddr; 323} len_and_sockaddr;
324enum {
325 LSA_SIZEOF_SA = sizeof(
326 union {
327 struct sockaddr sa;
328 struct sockaddr_in sin;
329#if ENABLE_FEATURE_IPV6
330 struct sockaddr_in6 sin6;
331#endif
332 }
333 )
334};
324/* Create stream socket, and allocated suitable lsa 335/* Create stream socket, and allocated suitable lsa
325 * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6)) */ 336 * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6)) */
326int xsocket_stream(len_and_sockaddr **lsap); 337int xsocket_stream(len_and_sockaddr **lsap);