mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 12:59:17 -04:00
of Jingle and Jingle-Audio o It only provides: 1) STUN server which implements the STUN protocol for Simple Traversal of UDP over NAT. 2) Relay server that may be used to relay traffic when a direct peer-to-peer connection could not be established. o The port itself does not install any libraries. It only uses them for these 2 sample servers.
11 lines
311 B
C++
11 lines
311 B
C++
--- talk/base/ssladapter.cc.orig Wed Feb 22 00:28:05 2006
|
|
+++ talk/base/ssladapter.cc Wed Feb 22 00:29:01 2006
|
|
@@ -99,7 +99,7 @@
|
|
}
|
|
|
|
static unsigned long id_function() {
|
|
- return static_cast<unsigned long>(THREAD_ID);
|
|
+ return reinterpret_cast<unsigned long>(THREAD_ID);
|
|
}
|
|
|
|
struct CRYPTO_dynlock_value {
|