Esempio n. 1
0
 internal static extern int uv_udp_set_broadcast(Udp handle, int on);
Esempio n. 2
0
 internal static extern int uv_udp_set_ttl(Udp handle, int ttl);
Esempio n. 3
0
 internal static extern int uv_udp_set_multicast_loop(Udp handle, int on);
Esempio n. 4
0
 internal static extern int uv_udp_set_multicast_interface(Udp handle, string interfaceAddress);
Esempio n. 5
0
 internal static extern int uv_udp_recv_stop(Udp handle);
Esempio n. 6
0
 internal static extern int uv_udp_set_membership(Udp handle, string multicastAddress, string interfaceAddress, UdpMemberShip memberShip);
Esempio n. 7
0
 unsafe internal static extern int uv_udp_recv_start(Udp handle, uv_alloc_cb allocCallback, uv_udp_recv_cb recvCallback);
Esempio n. 8
0
 internal static extern int uv_udp_getsockname(Udp handle, out NativeSocketAddress address, ref int length);
Esempio n. 9
0
 internal static extern int uv_udp_bind(Udp handle, ref NativeSocketAddress address, UdpFlags flags);
Esempio n. 10
0
 internal static extern int uv_udp_init_ex(EventLooper looper, Udp handle, uint flags);
Esempio n. 11
0
 internal static extern int uv_udp_init(EventLooper looper, Udp handle);