Home
last modified time | relevance | path

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

/dports/www/p5-Mojolicious/Mojolicious-9.22/lib/Mojo/Transaction/
H A DWebSocket.pm73 return $self->send([1, 0, 0, 0, WS_PONG, $frame->[5]]) if $op == WS_PING;
74 return undef if $op == WS_PONG;
/dports/databases/webdis/webdis-0.1.18/src/
H A Dwebsocket.h22 WS_PONG = 0xA, enumerator
H A Dwebsocket.c483 ws_frame_and_send_response(ws, WS_PONG, msg->payload, msg->payload_sz); in ws_process_read_data()
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-websocket.c125 #define WS_PONG 0xA macro
133 { WS_PONG, "Pong" },
342 case WS_PONG: /* Pong */ in dissect_websocket_control_frame()
763 …S_TEXT || op_code == WS_BINARY || op_code == WS_CLOSE || op_code == WS_PING || op_code == WS_PONG)) in test_websocket()
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-websocket.c125 #define WS_PONG 0xA macro
133 { WS_PONG, "Pong" },
342 case WS_PONG: /* Pong */ in dissect_websocket_control_frame()
763 …S_TEXT || op_code == WS_BINARY || op_code == WS_CLOSE || op_code == WS_PING || op_code == WS_PONG)) in test_websocket()
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-websocket.c125 #define WS_PONG 0xA
133 { WS_PONG, "Pong" },
342 case WS_PONG: /* Pong */
763 …S_TEXT || op_code == WS_BINARY || op_code == WS_CLOSE || op_code == WS_PING || op_code == WS_PONG))
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-websocket.c125 #define WS_PONG 0xA macro
133 { WS_PONG, "Pong" },
342 case WS_PONG: /* Pong */ in dissect_websocket_control_frame()
763 …S_TEXT || op_code == WS_BINARY || op_code == WS_CLOSE || op_code == WS_PING || op_code == WS_PONG)) in test_websocket()
/dports/www/p5-Mojolicious/Mojolicious-9.22/lib/Mojo/
H A DWebSocket.pm18 WS_PONG => 0xa}; constant
/dports/devel/p5-Devel-Cover/Devel-Cover-1.36/bin/
H A Dqueue67 return unless $frame->[4] eq Mojo::WebSocket::WS_PONG;
/dports/www/p5-Mojolicious/Mojolicious-9.22/t/mojo/
H A Dwebsocket_frames.t5 use Mojo::WebSocket qw(WS_BINARY WS_CLOSE WS_CONTINUATION WS_PING WS_PONG WS_TEXT), qw(build_frame …
32 $bytes = build_frame 0, 1, 0, 0, 0, WS_PONG, 'whatever';
/dports/net/nng/nng-1.5.2/src/supplemental/websocket/
H A Dwebsocket.c140 WS_PONG = 0xA, enumerator
980 ws_send_control(ws, WS_PONG, frame->buf, frame->len); in ws_read_frame_cb()
984 case WS_PONG: in ws_read_frame_cb()