Exemplo n.º 1
0
 public override int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength)
 {
     return(native_address_get_host(ref address, hostName, nameLength));
 }
Exemplo n.º 2
0
 static extern ENetHost *native_host_create(ref ENetAddress address,
                                            IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
Exemplo n.º 3
0
 public override int address_set_host(ref ENetAddress address, byte[] hostName)
 {
     return(native_address_set_host(ref address, hostName));
 }
Exemplo n.º 4
0
 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));
 }
Exemplo n.º 5
0
 static extern ENetPeer *native_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
Exemplo n.º 6
0
 static extern int native_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
Exemplo n.º 7
0
 public abstract int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
Exemplo n.º 8
0
 public static int enet_address_set_host(ref ENetAddress address, byte[] hostName)
 {
     return(Platform.address_set_host(ref address, hostName));
 }
Exemplo n.º 9
0
 public static int enet_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength)
 {
     return(Platform.address_get_host(ref address, hostName, nameLength));
 }
Exemplo n.º 10
0
 public abstract ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
Exemplo n.º 11
0
 public abstract ENetHost *host_create(ref ENetAddress address,
                                       IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
Exemplo n.º 12
0
 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));
 }
Exemplo n.º 13
0
 public static ENetPeer *enet_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data)
 {
     return(Platform.host_connect(host, ref address, channelCount, data));
 }
Exemplo n.º 14
0
 public abstract int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
Exemplo n.º 15
0
 public override int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength)
 {
     return(native_address_get_host_ip(ref address, hostIP, ipLength));
 }
Exemplo n.º 16
0
 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));
 }
Exemplo n.º 17
0
 static extern int native_address_set_host(ref ENetAddress address, byte[] hostName);
Exemplo n.º 18
0
 public override ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data)
 {
     return(native_host_connect(host, ref address, channelCount, data));
 }
Exemplo n.º 19
0
 static extern int native_address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
Exemplo n.º 20
0
 public abstract int address_set_host(ref ENetAddress address, byte[] hostName);