ctorrent_ipv6/connect_nonb.h

16 lines
224 B
C

#ifndef CONNECT_NONB_H
#define CONNECT_NONB_H
#include "./def.h"
#ifdef WINDOWS
#include <Winsock2.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#endif
int connect_nonb(SOCKET sk,struct sockaddr *psa);
#endif