X-Git-Url: http://git.meshlink.io/?p=utcp;a=blobdiff_plain;f=utcp.h;h=334e0bffc7ae2b20ac4b226f14218577b98bb7f1;hp=a29ef96b9293975db7482c92d4508e4e0a3df63e;hb=fb2d3fbb1fe0538ef0f137ed88322f5b3de4707f;hpb=3c10b4a62f71cdc92e7dea3ace931ec1f497a660 diff --git a/utcp.h b/utcp.h index a29ef96..334e0bf 100644 --- a/utcp.h +++ b/utcp.h @@ -80,9 +80,12 @@ extern void utcp_set_mtu(struct utcp *utcp, uint16_t mtu); extern size_t utcp_get_sndbuf(struct utcp_connection *connection); extern void utcp_set_sndbuf(struct utcp_connection *connection, size_t size); - extern size_t utcp_get_sndbuf_free(struct utcp_connection *connection); +extern size_t utcp_get_rcvbuf(struct utcp_connection *connection); +extern void utcp_set_rcvbuf(struct utcp_connection *connection, size_t size); +extern size_t utcp_get_rcvbuf_free(struct utcp_connection *connection); + extern bool utcp_get_nodelay(struct utcp_connection *connection); extern void utcp_set_nodelay(struct utcp_connection *connection, bool nodelay);