Main Page | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

http.h File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void httpd_init (void)


Function Documentation

void httpd_init void   ) 
 

Definition at line 232 of file http.c.

References http_accept(), IP_ADDR_ANY, tcp_accept(), tcp_bind(), tcp_listen(), and tcp_new().

Referenced by init_module().

00233 {
00234   struct tcp_pcb *pcb;
00235 
00236   pcb = tcp_new();
00237   tcp_bind(pcb, IP_ADDR_ANY, 80);
00238   pcb = tcp_listen(pcb);
00239   tcp_accept(pcb, http_accept);
00240 }

Here is the call graph for this function:


Generated on Wed Jan 14 12:59:04 2004 for RTL-lwIP-0.4 by doxygen 1.3.4