File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -247,19 +247,19 @@ extern "C" {
247
247
extern void __real_tcp_setprio (struct tcp_pcb *pcb, u8_t prio);
248
248
void __wrap_tcp_setprio (struct tcp_pcb *pcb, u8_t prio) {
249
249
LWIPMutex m;
250
- return __real_tcp_setprio (pcb, prio);
250
+ __real_tcp_setprio (pcb, prio);
251
251
}
252
252
253
253
extern void __real_tcp_backlog_delayed (struct tcp_pcb * pcb);
254
254
void __wrap_tcp_backlog_delayed (struct tcp_pcb * pcb) {
255
255
LWIPMutex m;
256
- return __real_tcp_backlog_delayed (pcb);
256
+ __real_tcp_backlog_delayed (pcb);
257
257
}
258
258
259
259
extern void __real_tcp_backlog_accepted (struct tcp_pcb * pcb);
260
260
void __wrap_tcp_backlog_accepted (struct tcp_pcb * pcb) {
261
261
LWIPMutex m;
262
- return __real_tcp_backlog_accepted (pcb);
262
+ __real_tcp_backlog_accepted (pcb);
263
263
}
264
264
extern struct udp_pcb *__real_udp_new (void );
265
265
struct udp_pcb *__wrap_udp_new (void ) {
Original file line number Diff line number Diff line change 166
166
167
167
-Wl,--wrap=tcp_arg
168
168
-Wl,--wrap=tcp_new
169
+ -Wl,--wrap=tcp_bind
169
170
-Wl,--wrap=tcp_listen
170
171
-Wl,--wrap=tcp_listen_with_backlog
171
172
-Wl,--wrap=tcp_accept
You can’t perform that action at this time.
0 commit comments