Lines Matching defs:side
2 * libwebsockets - small server side websockets and web server implementation
57 * The last one of the accepted side and the onward side to close frees it.
58 * This removes any chance of one side or the other having an invalidated
155 flow_control(struct conn *conn, int side, int enable)
157 if (conn->closed[side] ||
158 enable == conn->rx_enabled[side] ||
159 !conn->established[side])
162 if (lws_rx_flow_control(conn->wsi[side], enable))
165 conn->rx_enabled[side] = (char)enable;
166 lwsl_info("%s: %s side: %s\n", __func__, side ? "ONW" : "ACC",
253 /* callbacks related to client "onward side" */
375 * defer checking for accepted side closing until we
391 /* callbacks related to raw socket descriptor "accepted side" */
423 /* disable any rx until the client side is up */
534 * defer checking for onward side closing until we
535 * sent everything in the ring to accepted side