public override int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength) { return(native_address_get_host(ref address, hostName, nameLength)); }
static extern ENetHost *native_host_create(ref ENetAddress address, IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
public override int address_set_host(ref ENetAddress address, byte[] hostName) { return(native_address_set_host(ref address, hostName)); }
public override ENetHost *host_create(ref ENetAddress address, IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth) { return(native_host_create(ref address, peerLimit, channelLimit, incomingBandwidth, outgoingBandwidth)); }
static extern ENetPeer *native_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
static extern int native_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
public abstract int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
public static int enet_address_set_host(ref ENetAddress address, byte[] hostName) { return(Platform.address_set_host(ref address, hostName)); }
public static int enet_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength) { return(Platform.address_get_host(ref address, hostName, nameLength)); }
public abstract ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
public abstract ENetHost *host_create(ref ENetAddress address, IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
public static ENetHost *enet_host_create(ref ENetAddress address, IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth) { return(Platform.host_create(ref address, peerLimit, channelLimit, incomingBandwidth, outgoingBandwidth)); }
public static ENetPeer *enet_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data) { return(Platform.host_connect(host, ref address, channelCount, data)); }
public abstract int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
public override int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength) { return(native_address_get_host_ip(ref address, hostIP, ipLength)); }
public static int enet_address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength) { return(Platform.address_get_host_ip(ref address, hostIP, ipLength)); }
static extern int native_address_set_host(ref ENetAddress address, byte[] hostName);
public override ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data) { return(native_host_connect(host, ref address, channelCount, data)); }
static extern int native_address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
public abstract int address_set_host(ref ENetAddress address, byte[] hostName);