This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
| 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:
1.3.4