libowfat/socket.h

129 lines
4.1 KiB
C
Raw Normal View History

/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
2001-02-02 17:54:47 +00:00
#ifndef SOCKET_H
#define SOCKET_H
2006-11-07 17:56:05 +00:00
#include <sys/types.h>
2001-02-02 17:54:47 +00:00
#include "uint16.h"
#include "uint32.h"
#ifdef __cplusplus
extern "C" {
#endif
int socket_tcp4(void);
int socket_tcp4b(void);
int socket_udp4(void);
int socket_tcp6(void);
int socket_tcp6b(void);
int socket_udp6(void);
2001-02-02 17:54:47 +00:00
2010-01-18 19:49:03 +00:00
int socket_sctp4(void);
int socket_sctp4b(void);
int socket_sctp6(void);
int socket_sctp6b(void);
2001-02-02 17:54:47 +00:00
#define socket_tcp() socket_tcp4()
#define socket_udp() socket_udp4()
int socket_connect4(int s,const char* ip,uint16 port);
int socket_connect6(int s,const char* ip,uint16 port,uint32 scope_id);
int socket_connected(int s);
int socket_bind4(int s,const char* ip,uint16 port);
int socket_bind4_reuse(int s,const char* ip,uint16 port);
int socket_bind6(int s,const char* ip,uint16 port,uint32 scope_id);
int socket_bind6_reuse(int s,const char* ip,uint16 port,uint32 scope_id);
int socket_listen(int s,unsigned int backlog);
int socket_accept4(int s,char* ip,uint16* port);
int socket_accept6(int s,char* ip,uint16* port,uint32* scope_id);
2006-11-07 17:56:05 +00:00
ssize_t socket_recv4(int s,char* buf,size_t len,char* ip,uint16* port);
ssize_t socket_recv6(int s,char* buf,size_t len,char* ip,uint16* port,uint32* scope_id);
ssize_t socket_send4(int s,const char* buf,size_t len,const char* ip,uint16 port);
ssize_t socket_send6(int s,const char* buf,size_t len,const char* ip,uint16 port,uint32 scope_id);
int socket_local4(int s,char* ip,uint16* port);
int socket_local6(int s,char* ip,uint16* port,uint32* scope_id);
int socket_remote4(int s,char* ip,uint16* port);
int socket_remote6(int s,char* ip,uint16* port,uint32* scope_id);
2001-02-02 17:54:47 +00:00
/* enable sending udp packets to the broadcast address */
int socket_broadcast(int s);
2001-02-02 17:54:47 +00:00
/* join a multicast group on the given interface */
2003-10-24 19:01:05 +00:00
int socket_mcjoin4(int s,const char* groupip,const char* _interface);
int socket_mcjoin6(int s,const char* groupip,int _interface);
2001-02-02 17:54:47 +00:00
/* leave a multicast group on the given interface */
int socket_mcleave4(int s,const char* groupip);
int socket_mcleave6(int s,const char* groupip);
2001-02-02 17:54:47 +00:00
/* set multicast TTL/hop count for outgoing packets */
int socket_mcttl4(int s,char hops);
int socket_mchopcount6(int s,char hops);
2008-09-16 23:00:11 +00:00
/* enable multicast loopback, pass 1 for enable, 0 for disable */
int socket_mcloop4(int s,char loop);
int socket_mcloop6(int s,char loop);
2001-02-02 17:54:47 +00:00
2007-11-02 00:39:51 +00:00
/* please note that these are platform specific. Do not expect them to
* work. You might still get an accept() signalled even though there is
* no data available. So far, DATAIN is supported on FreeBSD and Linux,
* and HTTPIN is supported on FreeBSD. */
enum defermode {
2009-01-04 03:11:57 +00:00
DATAIN, /* only signal accept() if there is data coming in */
HTTPIN, /* only signal accept() if a HTTP header has come in */
2007-11-02 00:39:51 +00:00
};
void socket_deferaccept(int s,enum defermode mode);
void socket_tryreservein(int s,int size);
2001-02-02 17:54:47 +00:00
2003-10-24 19:01:05 +00:00
const char* socket_getifname(uint32 _interface);
uint32 socket_getifidx(const char* ifname);
2001-02-02 17:54:47 +00:00
2004-01-06 22:55:25 +00:00
extern int noipv6;
2001-02-02 17:54:47 +00:00
#ifdef __MINGW32__
#include <winsock2.h>
#include <ws2tcpip.h>
#define EWOULDBLOCK WSAEWOULDBLOCK
#define EINPROGRESS WSAEINPROGRESS
#define EALREADY WSAEALREADY
#define ENOTSOCK WSAENOTSOCK
#define EDESTADDRREQ WSAEDESTADDRREQ
#define EMSGSIZE WSAEMSGSIZE
#define EPROTOTYPE WSAEPROTOTYPE
#define ENOPROTOOPT WSAENOPROTOOPT
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
#define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT
#define EOPNOTSUPP WSAEOPNOTSUPP
#define EPFNOSUPPORT WSAEPFNOSUPPORT
#define EAFNOSUPPORT WSAEAFNOSUPPORT
#define EADDRINUSE WSAEADDRINUSE
#define EADDRNOTAVAIL WSAEADDRNOTAVAIL
#define ENETDOWN WSAENETDOWN
#define ENETUNREACH WSAENETUNREACH
#define ENETRESET WSAENETRESET
#define ECONNABORTED WSAECONNABORTED
#define ECONNRESET WSAECONNRESET
#define ENOBUFS WSAENOBUFS
#define EISCONN WSAEISCONN
#define ENOTCONN WSAENOTCONN
#define ESHUTDOWN WSAESHUTDOWN
#define ETOOMANYREFS WSAETOOMANYREFS
#define ETIMEDOUT WSAETIMEDOUT
#define ECONNREFUSED WSAECONNREFUSED
#define ELOOP WSAELOOP
#define EHOSTDOWN WSAEHOSTDOWN
#define EHOSTUNREACH WSAEHOSTUNREACH
#define EPROCLIM WSAEPROCLIM
#define EUSERS WSAEUSERS
#define EDQUOT WSAEDQUOT
#define ESTALE WSAESTALE
#define EREMOTE WSAEREMOTE
#define EDISCON WSAEDISCON
#endif
#ifdef __cplusplus
}
#endif
2001-02-02 17:54:47 +00:00
#endif