MINOR: quic: clarify doc for quic_recv()

Just highlight the fact that quic_recv() only receive a single datagram.
This commit is contained in:
Amaury Denoyelle 2024-05-22 15:58:43 +02:00
parent 5764bc50b5
commit b9f67a46a2

View File

@ -338,8 +338,8 @@ static struct quic_dgram *quic_rxbuf_purge_dgrams(struct quic_receiver_buf *rbuf
return prev; return prev;
} }
/* Receive data from datagram socket <fd>. Data are placed in <out> buffer of /* Receive a single message from datagram socket <fd>. Data are placed in <out>
* length <len>. * buffer of length <len>.
* *
* Datagram addresses will be returned via the next arguments. <from> will be * Datagram addresses will be returned via the next arguments. <from> will be
* the peer address and <to> the reception one. Note that <to> can only be * the peer address and <to> the reception one. Note that <to> can only be