]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/commitdiff
Gave the parameters of pbuf_cat() and pbuf_chain() better names to make the use more...
authorgoldsimon <goldsimon>
Thu, 11 Oct 2007 19:24:23 +0000 (19:24 +0000)
committergoldsimon <goldsimon>
Thu, 11 Oct 2007 19:24:23 +0000 (19:24 +0000)
src/include/lwip/pbuf.h

index cbc17c342f5e3421ed9bca23301aa4533bb42b7b..57a1e9991fb2229c84be7502e9adc55dea027a3d 100644 (file)
@@ -105,8 +105,8 @@ void pbuf_ref(struct pbuf *p);
 void pbuf_ref_chain(struct pbuf *p);
 u8_t pbuf_free(struct pbuf *p);
 u8_t pbuf_clen(struct pbuf *p);  
-void pbuf_cat(struct pbuf *h, struct pbuf *t);
-void pbuf_chain(struct pbuf *h, struct pbuf *t);
+void pbuf_cat(struct pbuf *head, struct pbuf *tail);
+void pbuf_chain(struct pbuf *head, struct pbuf *tail);
 struct pbuf *pbuf_dechain(struct pbuf *p);
 err_t pbuf_copy(struct pbuf *p_to, struct pbuf *p_from);
 u16_t pbuf_copy_partial(struct pbuf *p, void *dataptr, u16_t len, u16_t offset);