aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 2593c3ad2..3bec43233 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -289,6 +289,30 @@ void xpipe(int filedes[2]);
289off_t xlseek(int fd, off_t offset, int whence); 289off_t xlseek(int fd, off_t offset, int whence);
290off_t fdlength(int fd); 290off_t fdlength(int fd);
291 291
292/* Useful for having small structure members/global variables */
293typedef int8_t socktype_t;
294typedef int8_t family_t;
295struct BUG_too_small {
296 char BUG_socktype_t_too_small[(0
297 | SOCK_STREAM
298 | SOCK_DGRAM
299 | SOCK_RDM
300 | SOCK_SEQPACKET
301 | SOCK_RAW
302 ) <= 127 ? 1 : -1];
303 char BUG_family_t_too_small[(0
304 | AF_UNSPEC
305 | AF_INET
306 | AF_INET6
307 | AF_UNIX
308 | AF_PACKET
309 | AF_NETLINK
310 /* | AF_DECnet */
311 /* | AF_IPX */
312 ) <= 127 ? 1 : -1];
313};
314
315
292int xsocket(int domain, int type, int protocol); 316int xsocket(int domain, int type, int protocol);
293void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen); 317void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen);
294void xlisten(int s, int backlog); 318void xlisten(int s, int backlog);