Home
last modified time | relevance | path

Searched refs:http_connections (Results 1 – 1 of 1) sorted by relevance

/third_party/lwip/src/apps/http/
Dhttpd.c351 static struct http_state *http_connections; variable
357 hs->next = http_connections; in http_add_connection()
358 http_connections = hs; in http_add_connection()
365 if (http_connections) { in http_remove_connection()
366 if (http_connections == hs) { in http_remove_connection()
367 http_connections = hs->next; in http_remove_connection()
370 for (last = http_connections; last->next != NULL; last = last->next) { in http_remove_connection()
383 struct http_state *hs = http_connections; in http_kill_oldest_connection()