2001-02-02 17:54:47 +00:00
|
|
|
#include <sys/types.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#ifndef __MINGW32__
|
2001-02-02 17:54:47 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#endif
|
|
|
|
#include "windoze.h"
|
2001-02-02 17:54:47 +00:00
|
|
|
#include "socket.h"
|
|
|
|
|
|
|
|
int socket_tcp4(void) {
|
2003-11-06 20:47:59 +00:00
|
|
|
__winsock_init();
|
|
|
|
return winsock2errno(socket(PF_INET,SOCK_STREAM,IPPROTO_TCP));
|
2001-02-02 17:54:47 +00:00
|
|
|
}
|