Home
last modified time | relevance | path

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

/third_party/libwebsockets/lib/roles/http/
Dheader.c236 wsi->http.conn_type == HTTP_CONNECTION_KEEP_ALIVE) in lws_add_http_common_headers()
247 wsi->http.conn_type = (enum http_conn_type)types[t]; in lws_add_http_common_headers()
Dprivate-lib-roles-http.h264 enum http_conn_type conn_type; member
/third_party/libwebsockets/lib/roles/http/client/
Dclient-http.c658 wsi->http.conn_type = HTTP_CONNECTION_KEEP_ALIVE; in lws_client_interpret_server_handshake()
670 wsi->http.conn_type = HTTP_CONNECTION_CLOSE; in lws_client_interpret_server_handshake()
846 if (wsi->http.conn_type == HTTP_CONNECTION_KEEP_ALIVE) in lws_client_interpret_server_handshake()
937 wsi->http.conn_type = HTTP_CONNECTION_CLOSE; in lws_client_interpret_server_handshake()
/third_party/libwebsockets/lib/roles/http/server/
Dserver.c1593 enum http_conn_type conn_type; in lws_http_action() local
1681 conn_type = HTTP_CONNECTION_KEEP_ALIVE; in lws_http_action()
1683 conn_type = HTTP_CONNECTION_CLOSE; in lws_http_action()
1691 conn_type = HTTP_CONNECTION_KEEP_ALIVE; in lws_http_action()
1694 conn_type = HTTP_CONNECTION_CLOSE; in lws_http_action()
1696 wsi->http.conn_type = conn_type; in lws_http_action()
2613 if (wsi->http.conn_type != HTTP_CONNECTION_KEEP_ALIVE) { in lws_http_transaction_completed()