source:
sock.h
@
1fb3406
Last change on this file since 1fb3406 was 56c8a4f, checked in by , at 2015-06-04T17:13:22Z | |
---|---|
|
|
File size: 377 bytes |
Rev | Line | |
---|---|---|
[8a9afe4] | 1 | #include <errno.h> |
2 | #include <fcntl.h> | |
3 | ||
[b7d3cc34] | 4 | #include <unistd.h> |
5 | #include <sys/socket.h> | |
6 | #include <netinet/in.h> | |
7 | #include <arpa/inet.h> | |
8 | #include <netdb.h> | |
9 | #define sock_make_nonblocking(fd) fcntl(fd, F_SETFL, O_NONBLOCK) | |
[701acdd4] | 10 | #define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0) |
[56c8a4f] | 11 | #define sockerr_again() (errno == EINPROGRESS || errno == EINTR || errno == EAGAIN) |
[5ebff60] | 12 | void closesocket(int fd); |
Note: See TracBrowser
for help on using the repository browser.