|
NAMEudp_open - opens an UDP socketSYNOPSIS
DESCRIPTIONUDP is an unreliable message-based protocol defined in RFC 768. The size of the message is limited. The protocol has no initial or terminal handshake. A single socket can be used to different destinations.This function creates an UDP socket. local: IP address to be used to set source IP address in outgoing packets. Also, the socket will receive packets sent to this address. If port in the address is set to zero an ephemeral port will be chosen and filled into the local address. remote: IP address used as default destination for outbound packets. It is used when destination address in udp_send function is set to NULL. It is also used by msend and mrecv functions which don't allow to specify the destination address explicitly. Furthermore, if remote address is set, all the packets arriving from different addresses will be silently dropped. To close this socket use hclose function. This function is not available if libdill is compiled with --disable-sockets option. RETURN VALUEIn case of success the function returns newly created socket handle. In case of error it returns -1 and sets errno to one of the values below.ERRORS
EXAMPLE
SEE ALSOhclose(3) mrecv(3) mrecvl(3) msend(3) msendl(3) udp_open_mem(3) udp_recv(3) udp_recvl(3) udp_send(3) udp_sendl(3)
Visit the GSP FreeBSD Man Page Interface. |