Skip to content

Commit 70aa7a9

Browse files
committed
lwip: fix building without TCP_QUEUE_OOSEQ
1 parent 6080bb6 commit 70aa7a9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lwip/esp_interface.c

+4
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ void pp_recycle_rx_pbuf(struct pbuf *p)
164164

165165
#define COPY_PP_RX_PBUFS 0
166166

167+
#if TCP_QUEUE_OOSEQ
168+
167169
/* Return the number of ooseq bytes that can be retained given the current
168170
* size 'n'. */
169171
size_t ooseq_bytes_limit(struct tcp_pcb *pcb)
@@ -220,6 +222,8 @@ size_t ooseq_pbufs_limit(struct tcp_pcb *pcb)
220222
return target;
221223
}
222224

225+
#endif /* TCP_QUEUE_OOSEQ */
226+
223227
/**
224228
* This function should be called when a packet is ready to be read
225229
* from the interface. It uses the function low_level_input() that

0 commit comments

Comments
 (0)