Home
last modified time | relevance | path

Searched refs:stun_family (Results 1 – 10 of 10) sorted by relevance

/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/p2p/base/
H A Dstun.cc521 uint8 stun_family; in Read() local
522 if (!buf->ReadUInt8(&stun_family)) { in Read()
528 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
538 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/p2p/base/
H A Dstun.cc509 uint8_t stun_family; in Read() local
510 if (!buf->ReadUInt8(&stun_family)) { in Read()
516 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
526 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/p2p/base/
H A Dstun.cc503 uint8 stun_family; in Read() local
504 if (!buf->ReadUInt8(&stun_family)) { in Read()
510 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
520 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/api/transport/
H A Dstun.cc736 uint8_t stun_family; in Read() local
737 if (!buf->ReadUInt8(&stun_family)) { in Read()
743 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
753 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/api/transport/
H A Dstun.cc736 uint8_t stun_family; in Read() local
737 if (!buf->ReadUInt8(&stun_family)) { in Read()
743 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
753 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/api/transport/
H A Dstun.cc736 uint8_t stun_family; in Read() local
737 if (!buf->ReadUInt8(&stun_family)) { in Read()
743 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
753 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/net-im/tg_owt/tg_owt-d578c76/src/api/transport/
H A Dstun.cc806 uint8_t stun_family; in Read() local
807 if (!buf->ReadUInt8(&stun_family)) { in Read()
813 if (stun_family == STUN_ADDRESS_IPV4) { in Read()
823 } else if (stun_family == STUN_ADDRESS_IPV6) { in Read()
/dports/net/mediastreamer/mediastreamer-2.16.1/include/mediastreamer2/
H A Dstun.h231 MS2_PUBLIC int ms_stun_family_to_af(int stun_family);
/dports/net/mediastreamer/mediastreamer-2.16.1/src/voip/
H A Dstun.c558 int ms_stun_family_to_af(int stun_family) { in ms_stun_family_to_af() argument
559 if (stun_family == MS_STUN_ADDR_FAMILY_IPV4) return AF_INET; in ms_stun_family_to_af()
560 else if (stun_family == MS_STUN_ADDR_FAMILY_IPV6) return AF_INET6; in ms_stun_family_to_af()
/dports/net/turnserver/coturn-4.5.2/src/server/
H A Dns_turn_server.c46 static inline int get_family(int stun_family, ioa_engine_handle e, ioa_socket_handle client_socket)… in get_family() argument
47 switch(stun_family) { in get_family()