X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=lhnet.h;h=1644fb17f2da7a237f8e2bf522b6d8678d886e45;hb=c6d7670ed439522ba8be3959a0315cb8c4039a7f;hp=08850fb3f52dddc443853721a2ac38a24105b704;hpb=7f81dc664a496edf46a3cd537f2dc6dcb60ccf4c;p=xonotic%2Fdarkplaces.git diff --git a/lhnet.h b/lhnet.h index 08850fb3..1644fb17 100644 --- a/lhnet.h +++ b/lhnet.h @@ -1,15 +1,17 @@ -// Written by Forest Hale 2003-06-15 and placed into public domain. +// Written by Ashley Rose Hale (LadyHavoc) 2003-06-15 and placed into public domain. #ifndef LHNET_H #define LHNET_H +#include + typedef enum lhnetaddresstype_e { LHNETADDRESSTYPE_NONE, LHNETADDRESSTYPE_LOOP, LHNETADDRESSTYPE_INET4, - LHNETADDRESSTYPE_INET6, + LHNETADDRESSTYPE_INET6 } lhnetaddresstype_t; @@ -25,6 +27,7 @@ int LHNETADDRESS_FromPort(lhnetaddress_t *address, lhnetaddresstype_t addresstyp int LHNETADDRESS_FromString(lhnetaddress_t *address, const char *string, int defaultport); int LHNETADDRESS_ToString(const lhnetaddress_t *address, char *string, int stringbuffersize, int includeport); int LHNETADDRESS_GetAddressType(const lhnetaddress_t *address); +const char *LHNETADDRESS_GetInterfaceName(const lhnetaddress_t *address, char *ifname, size_t ifnamelength); int LHNETADDRESS_GetPort(const lhnetaddress_t *address); int LHNETADDRESS_SetPort(lhnetaddress_t *address, int port); int LHNETADDRESS_Compare(const lhnetaddress_t *address1, const lhnetaddress_t *address2); @@ -39,6 +42,7 @@ lhnetsocket_t; void LHNET_Init(void); void LHNET_Shutdown(void); +int LHNET_DefaultDSCP(int dscp); // < 0: query; >= 0: set (returns previous value) void LHNET_SleepUntilPacket_Microseconds(int microseconds); lhnetsocket_t *LHNET_OpenSocket_Connectionless(lhnetaddress_t *address); void LHNET_CloseSocket(lhnetsocket_t *lhnetsocket);