Method: Addrinfo.udp
- Defined in:
- raddrinfo.c
.udp(host, port) ⇒ Object
returns an addrinfo object for UDP address.
Addrinfo.udp("localhost", "daytime") #=> #<Addrinfo: 127.0.0.1:13 UDP (localhost:daytime)>
2903 2904 2905 2906 2907 2908 |
# File 'raddrinfo.c', line 2903
static VALUE
addrinfo_s_udp(VALUE self, VALUE host, VALUE port)
{
return addrinfo_firstonly_new(host, port,
INT2NUM(PF_UNSPEC), INT2NUM(SOCK_DGRAM), INT2NUM(IPPROTO_UDP), INT2FIX(0));
}
|