summaryrefslogtreecommitdiff
path: root/Protocols/SIP/lib/pjsip/pjlib
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-07 02:10:02 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-07 02:10:02 +0000
commitffc65c1f90f685e98f2f6d0a5d72c661b69cb3df (patch)
treea5f1a1c12b58531eb3310a316fd00aace6ee8419 /Protocols/SIP/lib/pjsip/pjlib
parent82516d84cc393f79eb620cb6300d320084a8272c (diff)
sip: 0.1.1.0
+ Build with vc6 * Fix for wrong voice service version git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@207 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Protocols/SIP/lib/pjsip/pjlib')
-rw-r--r--Protocols/SIP/lib/pjsip/pjlib/include/pj/config_site.h10
-rw-r--r--Protocols/SIP/lib/pjsip/pjlib/include/pj/timer.h6
2 files changed, 11 insertions, 5 deletions
diff --git a/Protocols/SIP/lib/pjsip/pjlib/include/pj/config_site.h b/Protocols/SIP/lib/pjsip/pjlib/include/pj/config_site.h
index e69de29..7eb6722 100644
--- a/Protocols/SIP/lib/pjsip/pjlib/include/pj/config_site.h
+++ b/Protocols/SIP/lib/pjsip/pjlib/include/pj/config_site.h
@@ -0,0 +1,10 @@
+// Uncomment to get minimum footprint (suitable for 1-2 concurrent calls only)
+//#define PJ_CONFIG_MINIMAL_SIZE
+
+// Uncomment to get maximum performance
+//#define PJ_CONFIG_MAXIMUM_SPEED
+
+#define PJSIP_HAS_TLS_TRANSPORT 1
+#define PJ_HAS_SSL_SOCK 1
+
+#include <pj/config_site_sample.h> \ No newline at end of file
diff --git a/Protocols/SIP/lib/pjsip/pjlib/include/pj/timer.h b/Protocols/SIP/lib/pjsip/pjlib/include/pj/timer.h
index 8e0dd45..a432d6e 100644
--- a/Protocols/SIP/lib/pjsip/pjlib/include/pj/timer.h
+++ b/Protocols/SIP/lib/pjsip/pjlib/include/pj/timer.h
@@ -1,4 +1,4 @@
-/* $Id: timer.h 2512 2009-03-13 15:49:06Z bennylp $ */
+/* $Id: timer.h 3034 2009-12-16 13:30:34Z bennylp $ */
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -64,11 +64,7 @@ PJ_BEGIN_DECL
/**
* The type for internal timer ID.
*/
-#if defined(PJ_SYMBIAN) && PJ_SYMBIAN!=0
-typedef void *pj_timer_id_t;
-#else
typedef int pj_timer_id_t;
-#endif
/**
* Forward declaration for pj_timer_entry.