Home
last modified time | relevance | path

Searched refs:OP_PONG (Results 1 – 4 of 4) sorted by path

/unit/test/
H A Dtest_asgi_websockets.py486 op_pong = ws.OP_PONG
519 ws.frame_write(sock, ws.OP_PONG, '')
535 check_frame(frame, True, ws.OP_PONG, payload)
552 check_frame(frame, True, ws.OP_PONG, f'payload-{i}')
832 check_frame(frame, True, ws.OP_PONG, ping_payload)
847 check_frame(frame, True, ws.OP_PONG, ping_payload)
863 check_frame(frame, True, ws.OP_PONG, ping_payload)
987 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
990 check_frame(frame, True, ws.OP_PONG, 'pongme 2!')
1006 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
[all …]
H A Dtest_java_websockets.py414 op_pong = ws.OP_PONG
447 ws.frame_write(sock, ws.OP_PONG, '')
463 check_frame(frame, True, ws.OP_PONG, payload)
480 check_frame(frame, True, ws.OP_PONG, f'payload-{i}')
760 check_frame(frame, True, ws.OP_PONG, ping_payload)
775 check_frame(frame, True, ws.OP_PONG, ping_payload)
791 check_frame(frame, True, ws.OP_PONG, ping_payload)
915 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
918 check_frame(frame, True, ws.OP_PONG, 'pongme 2!')
934 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
[all …]
H A Dtest_node_websockets.py434 op_pong = ws.OP_PONG
467 ws.frame_write(sock, ws.OP_PONG, '')
483 check_frame(frame, True, ws.OP_PONG, payload)
500 check_frame(frame, True, ws.OP_PONG, f'payload-{i}')
780 check_frame(frame, True, ws.OP_PONG, ping_payload)
795 check_frame(frame, True, ws.OP_PONG, ping_payload)
811 check_frame(frame, True, ws.OP_PONG, ping_payload)
935 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
938 check_frame(frame, True, ws.OP_PONG, 'pongme 2!')
954 check_frame(frame, True, ws.OP_PONG, 'pongme 1!')
[all …]
/unit/test/unit/applications/
H A Dwebsockets.py22 OP_PONG = 0x0A variable in ApplicationWebsocket