예제 #1
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_broadcast(Udp handle, int on);
예제 #2
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_ttl(Udp handle, int ttl);
예제 #3
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_multicast_loop(Udp handle, int on);
예제 #4
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_multicast_interface(Udp handle, string interfaceAddress);
예제 #5
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_recv_stop(Udp handle);
예제 #6
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_set_membership(Udp handle, string multicastAddress, string interfaceAddress, UdpMemberShip memberShip);
예제 #7
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 unsafe internal static extern int uv_udp_recv_start(Udp handle, uv_alloc_cb allocCallback, uv_udp_recv_cb recvCallback);
예제 #8
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_getsockname(Udp handle, out NativeSocketAddress address, ref int length);
예제 #9
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_bind(Udp handle, ref NativeSocketAddress address, UdpFlags flags);
예제 #10
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_init_ex(EventLooper looper, Udp handle, uint flags);
예제 #11
0
파일: Udp.cs 프로젝트: Gscienty/AsyncIO.Net
 internal static extern int uv_udp_init(EventLooper looper, Udp handle);