Lines Matching refs:seg
1125 * @param seg tcp_seg list of TCP segments to free
1128 tcp_segs_free(struct tcp_seg *seg)
1130 while (seg != NULL) {
1131 struct tcp_seg *next = seg->next;
1132 tcp_seg_free(seg);
1133 seg = next;
1140 * @param seg single tcp_seg to free
1143 tcp_seg_free(struct tcp_seg *seg)
1145 if (seg != NULL) {
1146 if (seg->p != NULL) {
1147 pbuf_free(seg->p);
1149 seg->p = NULL;
1152 memp_free(MEMP_TCP_SEG, seg);
1173 * @param seg the old tcp_seg
1174 * @return a copy of seg
1177 tcp_seg_copy(struct tcp_seg *seg)
1185 SMEMCPY((u8_t *)cseg, (const u8_t *)seg, sizeof(struct tcp_seg));