Fix pasto: uv_udp_recv_start() receives a UDP datagram, it doesn't send data.

This commit is contained in:
Frank Denis 2011-10-17 16:55:45 -07:00 committed by Ben Noordhuis
parent 2069a24e8c
commit e8a418e920

View File

@ -610,7 +610,7 @@ int uv_udp_send6(uv_udp_send_t* req, uv_udp_t* handle, uv_buf_t bufs[],
int bufcnt, struct sockaddr_in6 addr, uv_udp_send_cb send_cb);
/*
* Send data. If the socket has not previously been bound with `uv_udp_bind`
* Receive data. If the socket has not previously been bound with `uv_udp_bind`
* or `uv_udp_bind6`, it is bound to 0.0.0.0 (the "all interfaces" address)
* and a random port number.
*