Home
last modified time | relevance | path

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

/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-mem/mount-origin/
Dexample.js3 var transport_protocol = "";
6 transport_protocol = performance.timing.nextHopProtocol;
8 transport_protocol = window.chrome.loadTimes().connectionInfo;
15 transport_protocol = p[i].nextHopProtocol;
19 if (transport_protocol === "h2")
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls/mount-origin/
Dexample.js3 var transport_protocol = "";
6 transport_protocol = performance.timing.nextHopProtocol;
8 transport_protocol = window.chrome.loadTimes().connectionInfo;
15 transport_protocol = p[i].nextHopProtocol;
19 if (transport_protocol === "h2")
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-80/mount-origin/
Dexample.js3 var transport_protocol = "";
6 transport_protocol = performance.timing.nextHopProtocol;
8 transport_protocol = window.chrome.loadTimes().connectionInfo;
14 transport_protocol = p[i].nextHopProtocol;
18 if (transport_protocol === "h2")
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dtest.js504 var transport_protocol = "";
507 transport_protocol = performance.timing.nextHopProtocol;
509 transport_protocol = window.chrome.loadTimes().connectionInfo;
516 transport_protocol = p[i].nextHopProtocol;
520 console.log("transport protocol " + transport_protocol);
522 if (transport_protocol === "h2")
/third_party/libwebsockets/test-apps/
Dtest.js504 var transport_protocol = "";
507 transport_protocol = performance.timing.nextHopProtocol;
509 transport_protocol = window.chrome.loadTimes().connectionInfo;
516 transport_protocol = p[i].nextHopProtocol;
520 console.log("transport protocol " + transport_protocol);
522 if (transport_protocol === "h2")
/third_party/ffmpeg/libavformat/
Drtsp.c913 char transport_protocol[16]; in rtsp_parse_transport() local
929 get_word_sep(transport_protocol, sizeof(transport_protocol), in rtsp_parse_transport()
931 if (!av_strcasecmp (transport_protocol, "rtp")) { in rtsp_parse_transport()
940 } else if (!av_strcasecmp (transport_protocol, "x-pn-tng") || in rtsp_parse_transport()
941 !av_strcasecmp (transport_protocol, "x-real-rdt")) { in rtsp_parse_transport()
946 } else if (!av_strcasecmp(transport_protocol, "raw")) { in rtsp_parse_transport()