Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7159731
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/sipsimple/core/__init__.py b/sipsimple/core/__init__.py
index a4cd95d1..5b797424 100644
--- a/sipsimple/core/__init__.py
+++ b/sipsimple/core/__init__.py
@@ -1,14 +1,14 @@
# Copyright (C) 2010-2011 AG Projects. See LICENSE for details.
#
from sipsimple.core._core import *
from sipsimple.core._engine import *
from sipsimple.core._helpers import *
from sipsimple.core._primitives import *
-required_revision = 158
+required_revision = 159
if CORE_REVISION != required_revision:
raise ImportError("Wrong SIP core revision %d (expected %d)" % (CORE_REVISION, required_revision))
del required_revision
diff --git a/sipsimple/core/_core.pyx b/sipsimple/core/_core.pyx
index 8a22067b..4849c186 100644
--- a/sipsimple/core/_core.pyx
+++ b/sipsimple/core/_core.pyx
@@ -1,66 +1,66 @@
# Copyright (C) 2008-2011 AG Projects. See LICENSE for details.
#
# includes
include "_core.error.pxi"
include "_core.lib.pxi"
include "_core.sound.pxi"
include "_core.util.pxi"
include "_core.ua.pxi"
include "_core.event.pxi"
include "_core.request.pxi"
include "_core.helper.pxi"
include "_core.headers.pxi"
include "_core.subscription.pxi"
include "_core.invitation.pxi"
include "_core.referral.pxi"
include "_core.sdp.pxi"
include "_core.mediatransport.pxi"
# constants
PJ_VERSION = pj_get_version()
PJ_SVN_REVISION = int(PJ_SVN_REV)
-CORE_REVISION = 158
+CORE_REVISION = 159
# exports
__all__ = ["PJ_VERSION", "PJ_SVN_REVISION", "CORE_REVISION",
"SIPCoreError", "PJSIPError", "PJSIPTLSError", "SIPCoreInvalidStateError",
"AudioMixer", "ToneGenerator", "RecordingWaveFile", "WaveFile", "MixerPort",
"sip_status_messages",
"BaseCredentials", "Credentials", "FrozenCredentials", "BaseSIPURI", "SIPURI", "FrozenSIPURI",
"BaseHeader", "Header", "FrozenHeader",
"BaseContactHeader", "ContactHeader", "FrozenContactHeader",
"BaseContentTypeHeader", "ContentType", "ContentTypeHeader", "FrozenContentTypeHeader",
"BaseIdentityHeader", "IdentityHeader", "FrozenIdentityHeader", "FromHeader", "FrozenFromHeader", "ToHeader", "FrozenToHeader",
"RouteHeader", "FrozenRouteHeader", "RecordRouteHeader", "FrozenRecordRouteHeader", "BaseRetryAfterHeader", "RetryAfterHeader", "FrozenRetryAfterHeader",
"BaseViaHeader", "ViaHeader", "FrozenViaHeader", "BaseWarningHeader", "WarningHeader", "FrozenWarningHeader",
"BaseEventHeader", "EventHeader", "FrozenEventHeader", "BaseSubscriptionStateHeader", "SubscriptionStateHeader", "FrozenSubscriptionStateHeader",
"BaseReasonHeader", "ReasonHeader", "FrozenReasonHeader",
"BaseReferToHeader", "ReferToHeader", "FrozenReferToHeader",
"BaseSubjectHeader", "SubjectHeader", "FrozenSubjectHeader",
"BaseReplacesHeader", "ReplacesHeader", "FrozenReplacesHeader",
"Request",
"Referral",
"sipfrag_re",
"Subscription",
"Invitation",
"DialogID",
"SDPSession", "FrozenSDPSession", "SDPMediaStream", "FrozenSDPMediaStream", "SDPConnection", "FrozenSDPConnection", "SDPAttribute", "FrozenSDPAttribute",
"RTPTransport", "AudioTransport"]
# Initialize the GIL in the PyMODINIT function of the module.
# This is a hack because Cython does not support #ifdefs.
cdef extern from *:
cdef void emit_ifdef_with_thread "#ifdef WITH_THREAD //" ()
cdef void emit_endif "#endif //" ()
emit_ifdef_with_thread()
PyEval_InitThreads()
emit_endif()
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Nov 23, 11:24 AM (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409116
Default Alt Text
(3 KB)
Attached To
Mode
rPYNSIPSIMPLE python3-sipsimple
Attached
Detach File
Event Timeline
Log In to Comment