1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #ifndef _XS_SOCKET_H
- #define _XS_SOCKET_H
- int xs_socket_timeout(int s, float rto, float sto);
- int xs_socket_server(char *addr, int port);
- FILE *xs_socket_accept(int rs);
- #ifdef XS_IMPLEMENTATION
- #include <sys/socket.h>
- #include <netdb.h>
- #include <netinet/in.h>
- int xs_socket_timeout(int s, float rto, float sto)
- {
- struct timeval tv;
- int ret = 0;
- if (rto > 0.0) {
- tv.tv_sec = (int)rto;
- tv.tv_usec = (int)((rto - (float)(int)rto) * 1000000.0);
- ret = setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(tv));
- }
- if (sto > 0.0) {
- tv.tv_sec = (int)sto;
- tv.tv_usec = (int)((sto - (float)(int)sto) * 1000000.0);
- ret = setsockopt(s, SOL_SOCKET, SO_SNDTIMEO, (char *)&tv, sizeof(tv));
- }
- return ret;
- }
- int xs_socket_server(char *addr, int port)
- {
- int rs = -1;
- struct sockaddr_in host;
- memset(&host, '\0', sizeof(host));
- if (addr != NULL) {
- struct hostent *he;
- if ((he = gethostbyname(addr)) != NULL)
- memcpy(&host.sin_addr, he->h_addr_list[0], he->h_length);
- else
- goto end;
- }
- host.sin_family = AF_INET;
- host.sin_port = htons(port);
- if ((rs = socket(AF_INET, SOCK_STREAM, 0)) != -1) {
-
- int i = 1;
- setsockopt(rs, SOL_SOCKET, SO_REUSEADDR, (char *)&i, sizeof(i));
- if (bind(rs, (struct sockaddr *)&host, sizeof(host)) == -1) {
- close(rs);
- rs = -1;
- }
- else
- listen(rs, SOMAXCONN);
- }
- end:
- return rs;
- }
- FILE *xs_socket_accept(int rs)
- {
- int cs = -1;
- struct sockaddr_in host;
- socklen_t l = sizeof(host);
- cs = accept(rs, (struct sockaddr *)&host, &l);
- return cs == -1 ? NULL : fdopen(cs, "r+");
- }
- #endif
- #endif
|