lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [lwip-users] LWIP_EVENT_API


From: Tom C. Barker
Subject: RE: [lwip-users] LWIP_EVENT_API
Date: Tue, 6 Jan 2004 14:14:17 -0800

Hello,

More specifically, in apimsg.c we have

static void setup_tcp(struct netconn *conn)
{
  struct tcp_pcb *pcb;

  pcb = conn->pcb.tcp;
  tcp_arg(pcb, conn);
  tcp_recv(pcb, recv_tcp);
  tcp_sent(pcb, sent_tcp);
  tcp_poll(pcb, poll_tcp, 4);
  tcp_err(pcb, err_tcp);
}


Yet the only instance of tcp_recv(), etc. is 
with the switch LWIP_CALLBACK_API turned on.

Would someone please confirm this?


Thanks,
Tom




reply via email to

[Prev in Thread] Current Thread [Next in Thread]