opensipstack-devel Mailing List for OpenSIPStack (Page 48)
Brought to you by:
joegenbaclor
You can subscribe to this list here.
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
(12) |
Jul
(4) |
Aug
(3) |
Sep
(24) |
Oct
(45) |
Nov
(41) |
Dec
(67) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(51) |
Feb
(93) |
Mar
(54) |
Apr
(76) |
May
(114) |
Jun
(133) |
Jul
(124) |
Aug
(180) |
Sep
(53) |
Oct
(41) |
Nov
(109) |
Dec
(92) |
2008 |
Jan
(52) |
Feb
(40) |
Mar
(29) |
Apr
(40) |
May
(83) |
Jun
(68) |
Jul
(30) |
Aug
(72) |
Sep
(50) |
Oct
(48) |
Nov
(25) |
Dec
(80) |
2009 |
Jan
(9) |
Feb
(2) |
Mar
(32) |
Apr
(67) |
May
|
Jun
(7) |
Jul
(7) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
(2) |
2010 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
(10) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Andrew P. <and...@po...> - 2007-08-13 17:59:47
|
Hi, I am trying to understand how the responses are routed in OpenSBC. B2BUserAgent::ProcessEvent checks if there is a SIPMessage event, differentiates between different types of requests, then if event is not a request, event dispatcher checks if it already has a session for this response. Once session has been found, it calls B2BUAEndPoint::ProcessStackEvent. The latter does the following magic to handle the responses: if( !msg.IsRequest() ) { OString meth = msg.GetCSeqMethod(); if( meth == "SUBSCRIBE" || meth == "NOTIFY" || meth == "PUBLISH" ) { ///this is a response SIPSession::GCRef ref = proxy->FindGCRefByCallId( msg.GetCallId() ); if( ref != NULL ) { proxy->ProcessStackEvent( ref, event ); return; } } } So far so good. The switch loop inside the SIPSessionManager::ProcessStackEvent function calls OnIncomingSIPMessage: case SIPStackEvent::Message: LOG_CONTEXT( LogDetail(), eventObject->GetCallId(), "Event" << ": " << "---> Inbound - " << ((SIPMessageArrival&)*eventObject).GetMessage().GetStartLine() ); OnIncomingSIPMessage( (SIPMessageArrival&)*eventObject, session ); break; OnIncomingSIPMessage to dispatch a valid response calls SIPSession::OnIncomingSIPMessage. It does the following thing: if( messageEvent.GetMessage().IsRequest() ) { if( !messageEvent.GetMessage().IsAck() ) { PWaitAndSignal lock( m_CurrentUASRequestMutex ); m_CurrentUASRequest = messageEvent.GetMessage(); } } I have kind of reached a deadlock here. What I want to know is how the response if actually delivered to the local transaction layer or remote proxy. We've seen a scenario where OpenBSC is serving as a frontend to PortaSIP and from it we know that responses are a subject to a check of Request-URI and To-URI to distinguish between local handling and relay. I just do not see where these checks are done. Thanks, -- Sincerely, Andrew Pogrebennyk |
From: Whit T. <de...@wh...> - 2007-08-13 17:50:48
|
This is a question related to the problems I've been having with the ntdll.dll crash. I just want to ensure that I am using the correct libraries and installing everything correctly. When I compile ATLSIP in Release, it generates the ATLSIP.dll When I compile ATLSIP in Release-Minimal mode, it generates the AxInterop.ATLSIPLib.1.0.dll file in the Release folder, hover its timestamp is when I first downloaded ATLSIP out of CVS, so I'm assuming this isn't compiled, but copied. Which library should be used in a .NET app as a reference? Should you import the ATLSIP.dll directly, or should you use the Interop library? Hopefully there is no such thing as a 'dumb' question! Regards, Whit |
From: bart <ope...@op...> - 2007-08-13 15:02:11
|
atlsip\OSSPhone\vc80-mfc. This project really looks good. I would like to base my project around this. Could someone send me a VC8 project with the following structure. Project Directory ( containing solution) lib (containing opensipstack.lib + opensipstackd.lib) include (containing opensipstack includes) softphone (or project directory - containg VC generated files) This is default structure + lib and include directories. If this project contained the correct linker settings I will be on my way and will promise MaxBeers :-) Thanks bart |
From: bart <ope...@op...> - 2007-08-13 14:53:29
|
OK, what I have done so far. (A) Downloaded from cvs using debian linux. - both opensipstack and atlsip. (B) copied the folders to my desktop. (C) Compiled opensipstack (no errors - 4 linker warnings) 1>Creating library... 1>shttpsvc.obj : warning LNK4221: no public symbols found; archive member will be inaccessible 1>pssl.obj : warning LNK4221: no public symbols found; archive member will be inaccessible 1>g729codec.obj : warning LNK4221: no public symbols found; archive member will be inaccessible 1>g7231codec.obj : warning LNK4221: no public symbols found; archive member will be inaccessible 1>Build log was saved at "file://c:\Users\bart\Desktop\opensipstack\Release\BuildLog.htm" 1>OpenSIPStack - 0 error(s), 4 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== (D) Opened ATLSIP solution and compiled (warnings below) 1>Linking... 1>LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/FORCE' specification 1> Creating library Debug/ATLSIP.lib and object Debug/ATLSIP.exp 1>MSVCRTD.lib(cinitexe.obj) : warning LNK4098: defaultlib 'libcmt.lib' conflicts with use of other libs; use /NODEFAULTLIB:library 1>Embedding manifest... 1>Performing registration 1>Build log was saved at "file://c:\Users\bart\Desktop\atlsip\Debug\BuildLog.htm" 1>ATLSIP - 0 error(s), 2 warning(s) ========== Build: 1 succeeded, 0 failed, 1 up-to-date, 0 skipped ========== (E) navigated to atlsip\OSSPhone\vc80-mfc and opened OSSPhone (MFC).vcproj. Compiled but noticed that it wasnt linking to openstackd.lib. so.. (F) slightly modified link options by - project - properties - linker - input - additional dependencies and inserted direct path to library. Linker settings below /OUT:"C:\Users\bart\Desktop\atlsip\OSSPhone\vc80-mfc\Debug\OSSPhone (MFC).exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTFILE:"Debug\OSSPhone (MFC).exe.intermediate.manifest" /NODEFAULTLIB:"libcmtd.lib" /NODEFAULTLIB:"libc.lib" /DEBUG /PDB:"c:\Users\bart\Desktop\atlsip\OSSPhone\vc80-mfc\Debug\OSSPhone (MFC).pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT C:\Users\bart\Desktop\opensipstack\lib\opensipstackd.lib These are the errors that resulted. 1>Linking... 1>libcmt.lib(sprintf.obj) : error LNK2005: _sprintf already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(setlocal.obj) : error LNK2005: __configthreadlocale already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(tidtable.obj) : error LNK2005: __encode_pointer already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(tidtable.obj) : error LNK2005: __decode_pointer already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(printf.obj) : error LNK2005: _printf already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0dat.obj) : error LNK2005: __amsg_exit already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0dat.obj) : error LNK2005: __initterm_e already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0dat.obj) : error LNK2005: _exit already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0dat.obj) : error LNK2005: __exit already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0dat.obj) : error LNK2005: __cexit already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(mlock.obj) : error LNK2005: __unlock already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(mlock.obj) : error LNK2005: __lock already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(winxfltr.obj) : error LNK2005: __XcptFilter already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(dosmap.obj) : error LNK2005: __errno already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(_file.obj) : error LNK2005: ___iob_func already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(calloc.obj) : error LNK2005: _calloc already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(crt0init.obj) : error LNK2005: ___xi_a already defined in msvcrtd.lib(cinitexe.obj) 1>libcmt.lib(crt0init.obj) : error LNK2005: ___xi_z already defined in msvcrtd.lib(cinitexe.obj) 1>libcmt.lib(crt0init.obj) : error LNK2005: ___xc_a already defined in msvcrtd.lib(cinitexe.obj) 1>libcmt.lib(crt0init.obj) : error LNK2005: ___xc_z already defined in msvcrtd.lib(cinitexe.obj) 1>libcmt.lib(hooks.obj) : error LNK2005: "void __cdecl terminate(void)" (?terminate@@YAXXZ) already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(invarg.obj) : error LNK2005: __invoke_watson already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(invarg.obj) : error LNK2005: __invalid_parameter already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(stricmp.obj) : error LNK2005: __stricmp already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(errmode.obj) : error LNK2005: ___set_app_type already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(getenv.obj) : error LNK2005: _getenv already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(tolower.obj) : error LNK2005: _tolower already defined in msvcrtd.lib(MSVCR80D.dll) 1>libcmt.lib(strnicmp.obj) : error LNK2005: __strnicmp already defined in msvcrtd.lib(MSVCR80D.dll) 1>msvcrtd.lib(MSVCR80D.dll) : error LNK2005: __setmbcp already defined in libcmt.lib(mbctype.obj) 1>LINK : warning LNK4098: defaultlib 'msvcrtd.lib' conflicts with use of other libs; use /NODEFAULTLIB:library 1>msvcrtd.lib(cinitexe.obj) : warning LNK4098: defaultlib 'libcmt.lib' conflicts with use of other libs; use /NODEFAULTLIB:library 1>libcmt.lib(crt0.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup 1>C:\Users\bart\Desktop\atlsip\OSSPhone\vc80-mfc\Debug\OSSPhone (MFC).exe : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\Users\bart\Desktop\atlsip\OSSPhone\vc80-mfc\Debug\BuildLog.htm" 1>OSSPhone (MFC) - 31 error(s), 2 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== Please see next post |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 12:30:38
|
also be sure to set the appropriate project to checkout (e.g. opensipstack, atlsip). Ilian Jeri C. Pinzon wrote: > bart wrote: > >> no, whew - I am not that bad, been using tortoise subversion for a loooong time. >> >> > Use *Tortoise CVS*. Not Tortoise SVN. Then do a checkout with the > following CVSROOT: > :pserver:ano...@op...:/cvsroot/opensipstack > > Then enter a blank password. > > - Ilian > >> The question is this:- HAVE YOU TRIED IT? what url did you use? I have tried "any-which way" and cant get to it. Try using the repo browser in tortoise. >> >> I am now installing cvs on my debian !!! >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 12:29:24
|
bart wrote: > no, whew - I am not that bad, been using tortoise subversion for a loooong time. > Use *Tortoise CVS*. Not Tortoise SVN. Then do a checkout with the following CVSROOT: :pserver:ano...@op...:/cvsroot/opensipstack Then enter a blank password. - Ilian > The question is this:- HAVE YOU TRIED IT? what url did you use? I have tried "any-which way" and cant get to it. Try using the repo browser in tortoise. > > I am now installing cvs on my debian !!! > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-13 12:13:29
|
no, whew - I am not that bad, been using tortoise subversion for a loooong time. The question is this:- HAVE YOU TRIED IT? what url did you use? I have tried "any-which way" and cant get to it. Try using the repo browser in tortoise. I am now installing cvs on my debian !!! |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 10:29:56
|
you will need a cvs client to download the code. a quick google will tell you where tortoise cvs is located. anyway, here it is: http://www.tortoisecvs.org/download.shtml bart wrote: > Can you tell me the url for tortoise svn, please? That is why I didnt use the cvs in the first place > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-13 10:22:25
|
Can you tell me the url for tortoise svn, please? That is why I didnt use the cvs in the first place |
From: Yacine A. <yac...@ms...> - 2007-08-13 09:54:43
|
This is my sip.log file after two crashes----------------------------------= ---------------------------------2007/08/13 10:44:34.328 ActiveSI= PControl INF: [CID=3D0x068e] Session CREATED2007/08/13 10:44:34.328 = ActiveSIPControl INF: [CID=3D0x068e] *** CREATED *** CLIENT REGIST= ER Session REGISTER-5002@193.251.169.1322007/08/13 10:44:34.328 A= ctiveSIPControl DTL: [CID=3D0x0983] REGISTER: Starting Registration Proc= ess2007/08/13 10:44:34.328 ActiveSIPControl DTL: [CID=3D0x068e= ] 2007/08/13 10:44:34.328 ActiveSIPControl DTL: [CID=3D0x0= 68e] REGISTER sip:193.251.169.132 SIP/2.02007/08/13 10:44:34.328 = ActiveSIPControl DTL: [CID=3D0x068e] From: 5002 <sip:5002@193.25= 1.169.132>;tag=3D6c4347d064f9181095aee0ef3ed8ae952007/08/13 10:44:34.328 = ActiveSIPControl DTL: [CID=3D0x068e] To: sip:5002@193.251.16= 9.1322007/08/13 10:44:34.328 ActiveSIPControl DTL: [CID=3D0x06= 8e] Via: SIP/2.0/UDP 192.168.0.52:5060;branch=3Dz9hG4bK6c4347d064f91810= 95afe0ef3ed8ae95;rport2007/08/13 10:44:34.328 ActiveSIPControl = DTL: [CID=3D0x068e] CSeq: 1 REGISTER2007/08/13 10:44:34.328 = ActiveSIPControl DTL: [CID=3D0x068e] Call-ID: 6c4347d0-64f9-1810-8fe= 2-e0ef3ed8ae952007/08/13 10:44:34.328 ActiveSIPControl DTL: [C= ID=3D0x068e] Contact: "5002" <sip:5002@192.168.0.52:5060;transport=3Dud= p>2007/08/13 10:44:34.328 ActiveSIPControl DTL: [CID=3D0x068e]= Expires: 36002007/08/13 10:44:34.328 ActiveSIPControl DTL= : [CID=3D0x068e] Max-Forwards: 102007/08/13 10:44:34.328 Acti= veSIPControl DTL: [CID=3D0x068e] Allow: INVITE, BYE, ACK, REFER, MES= SAGE, INFO, NOTIFY, OPTIONS2007/08/13 10:44:34.328 ActiveSIPContr= ol DTL: [CID=3D0x068e] Content-Length: 02007/08/13 10:44:34.328 = ActiveSIPControl DTL: [CID=3D0x068e] 2007/08/13 10:44:34.328 = ActiveSIPControl DTL: [CID=3D0x068e] 2007/08/13 10:44:34.32= 8 ActiveSIPControl DTL: [CID=3D0x0983] NICT(346907070) *** = CREATED *** - NICT|6c4347d0-64f9-1810-8fe2-e0ef3ed8ae95|z9hG4bK6c4347d064f9= 181095afe0ef3ed8ae95|REGISTER2007/08/13 10:44:34.328 Transac= tion DTL: [CID=3D0x0983] NICT(346907070) Event(SIPMessage) - REGISTER= sip:193.251.169.132 SIP/2.02007/08/13 10:44:34.328 Transact= ion DBG: [CID=3D0x0983] TRANSACTION: (NICT) REGISTER sip:193.251.169.132= SIP/2.0 State: 02007/08/13 10:44:34.328 Transaction DTL:= [CID=3D0x0983] NICT(346907070) StateIdle->StateTrying(REGISTER sip:193.= 251.169.132 SIP/2.0)2007/08/13 10:44:34.328 Transaction D= BG: [CID=3D0x0983] NICT(346907070) Timer E( 500 ms ) STARTED2007/08/13 1= 0:44:34.328 Transaction DBG: [CID=3D0x0983] NICT(34690707= 0) Timer F( 10000 ms ) STARTED2007/08/13 10:44:34.375 SIP Time= r Thread DBG: [CID=3D0x0983] NICT(346907070) Timer E( 500 ms ) EXPIRE= D2007/08/13 10:44:34.375 Transaction DTL: [CID=3D0x0983] = NICT(346907070) Event( Timer-E ) Interval: 5002007/08/13 10:44:34.375 = Transaction DBG: [CID=3D0x0983] NICT(346907070) Timer E(= 1000 ms ) STARTED2007/08/13 10:44:34.484 Transaction DTL= : [CID=3D0x0983] NICT(346907070) Event(SIPMessage) - SIP/2.0 100 Trying2= 007/08/13 10:44:34.484 Transaction DBG: [CID=3D0x0983] TR= ANSACTION: (NICT) SIP/2.0 100 Trying State: 12007/08/13 10:44:34.484 = Transaction DTL: [CID=3D0x0983] NICT(346907070) StateTrying-= >StateProceeding2007/08/13 10:44:34.500 Transaction DTL: = [CID=3D0x0983] NICT(346907070) Event(SIPMessage) - SIP/2.0 401 Unauthori= zed2007/08/13 10:44:34.500 Transaction DBG: [CID=3D0x0983= ] TRANSACTION: (NICT) SIP/2.0 401 Unauthorized State: 22007/08/13 10:44:34.= 500 Transaction DTL: [CID=3D0x0983] NICT(346907070) St= ateProceeding->StateCompleted2007/08/13 10:44:34.500 Transac= tion DBG: [CID=3D0x0983] NICT(346907070) Timer E STOPPED2007/08/13 10= :44:34.500 Transaction DBG: [CID=3D0x0983] NICT(346907070= ) Timer F STOPPED2007/08/13 10:44:34.500 Transaction D= BG: [CID=3D0x0983] NICT(346907070) Timer K( 5000 ms ) STARTED2007/08/13 = 10:44:34.500 UserAgent DBG: [CID=3D0x068e] 2007/08/= 13 10:44:34.500 UserAgent DBG: [CID=3D0x068e] SIP/2= .0 401 Unauthorized2007/08/13 10:44:34.500 UserAgent DB= G: [CID=3D0x068e] From: 5002 <sip:5002@193.251.169.132>;tag=3D6c4347d06= 4f9181095aee0ef3ed8ae952007/08/13 10:44:34.500 UserAgent = DBG: [CID=3D0x068e] To: sip:5002@193.251.169.132;tag=3Das2841a7c02007= /08/13 10:44:34.500 UserAgent DBG: [CID=3D0x068e] V= ia: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2597;branch=3Dz9hG4bK6c4347d064f918= 1095afe0ef3ed8ae95;uas-addr=3D193.251.169.132;rport=3D5060;received=3D192.1= 68.0.522007/08/13 10:44:34.500 UserAgent DBG: [CID=3D0x= 068e] CSeq: 1 REGISTER2007/08/13 10:44:34.500 UserAgen= t DBG: [CID=3D0x068e] Call-ID: 6c4347d0-64f9-1810-8fe2-e0ef3ed8ae952= 007/08/13 10:44:34.500 UserAgent DBG: [CID=3D0x068e] = User-Agent: Asterisk PBX2007/08/13 10:44:34.500 UserAgen= t DBG: [CID=3D0x068e] WWW-Authenticate: Digest algorithm=3DMD5, real= m=3D"asterisk", nonce=3D"603044a4"2007/08/13 10:44:34.500 = UserAgent DBG: [CID=3D0x068e] Allow: INVITE, ACK, CANCEL, OPTIONS, B= YE, REFER, SUBSCRIBE, NOTIFY2007/08/13 10:44:34.500 UserAg= ent DBG: [CID=3D0x068e] Content-Length: 02007/08/13 10:44:34.500 = UserAgent DBG: [CID=3D0x068e] 2007/08/13 10:44:34.500 = UserAgent DBG: [CID=3D0x068e] 2007/08/13 10:44:34.5= 00 UserAgent DTL: [CID=3D0x0983] REGISTER: Registration= being authenticated2007/08/13 10:44:34.500 Transaction D= TL: [CID=3D0x0983] NICT(346907070) Event(SIPMessage) - SIP/2.0 100 Tryin= g2007/08/13 10:44:34.500 Transaction DBG: [CID=3D0x0983] = TRANSACTION: (NICT) SIP/2.0 100 Trying State: 32007/08/13 10:44:34.515 = Transaction DTL: [CID=3D0x0983] NICT(346907070) Event(SIPM= essage) - SIP/2.0 401 Unauthorized2007/08/13 10:44:34.515 Tr= ansaction DBG: [CID=3D0x0983] TRANSACTION: (NICT) SIP/2.0 401 Unauthoriz= ed State: 32007/08/13 10:44:34.515 UserAgent DTL: [CID= =3D0x0983] NICT(346907071) *** CREATED *** - NICT|6c4347d0-64f9-1810-8fe= 2-e0ef3ed8ae95|z9hG4bKaa8c47d064f9181095afe0ef3ed8ae95|REGISTER2007/08/13 1= 0:44:34.515 Transaction DTL: [CID=3D0x0983] NICT(34690707= 1) Event(SIPMessage) - REGISTER sip:193.251.169.132 SIP/2.02007/08/13 10= :44:34.515 Transaction DBG: [CID=3D0x0983] TRANSACTION: (= NICT) REGISTER sip:193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:34.515 = Transaction DTL: [CID=3D0x0983] NICT(346907071) StateI= dle->StateTrying(REGISTER sip:193.251.169.132 SIP/2.0)2007/08/13 10:44:34.5= 15 Transaction DBG: [CID=3D0x0983] NICT(346907071) Tim= er E( 500 ms ) STARTED2007/08/13 10:44:34.515 Transaction = DBG: [CID=3D0x0983] NICT(346907071) Timer F( 10000 ms ) STARTED2007/08/= 13 10:44:34.531 Transaction DTL: [CID=3D0x0983] NICT(3469= 07071) Event(SIPMessage) - SIP/2.0 100 Trying2007/08/13 10:44:34.531 = Transaction DBG: [CID=3D0x0983] TRANSACTION: (NICT) SIP/2.0 = 100 Trying State: 12007/08/13 10:44:34.531 Transaction DT= L: [CID=3D0x0983] NICT(346907071) StateTrying->StateProceeding2007/08/13= 10:44:34.531 Transaction DTL: [CID=3D0x0983] NICT(346907= 071) Event(SIPMessage) - SIP/2.0 200 OK2007/08/13 10:44:34.531 = Transaction DBG: [CID=3D0x0983] TRANSACTION: (NICT) SIP/2.0 200 OK= State: 22007/08/13 10:44:34.531 UserAgent DBG: [CID=3D= 0x068e] 2007/08/13 10:44:34.531 UserAgent DBG: [CID= =3D0x068e] SIP/2.0 200 OK2007/08/13 10:44:34.531 UserA= gent DBG: [CID=3D0x068e] From: 5002 <sip:5002@193.251.169.132>;tag= =3D908647d064f9181095afe0ef3ed8ae952007/08/13 10:44:34.531 = UserAgent DBG: [CID=3D0x068e] To: sip:5002@193.251.169.132;tag=3Das= 2841a7c02007/08/13 10:44:34.531 UserAgent DBG: [CID=3D0= x068e] Via: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2597;branch=3Dz9hG4bKaa= 8c47d064f9181095afe0ef3ed8ae95;uas-addr=3D193.251.169.132;rport=3D5060;rece= ived=3D192.168.0.522007/08/13 10:44:34.531 UserAgent DB= G: [CID=3D0x068e] CSeq: 2 REGISTER2007/08/13 10:44:34.531 = UserAgent DBG: [CID=3D0x068e] Call-ID: 6c4347d0-64f9-1810-8fe2-e= 0ef3ed8ae952007/08/13 10:44:34.531 UserAgent DBG: [CID= =3D0x068e] Contact: <sip:5002@192.168.0.52:5060;transport=3Dudp>;expire= s=3D36002007/08/13 10:44:34.531 UserAgent DBG: [CID=3D0= x068e] Date: Mon, 13 Aug 2007 09:44:14 GMT2007/08/13 10:44:34.531 = UserAgent DBG: [CID=3D0x068e] User-Agent: Asterisk PBX20= 07/08/13 10:44:34.531 UserAgent DBG: [CID=3D0x068e] = Expires: 36002007/08/13 10:44:34.531 UserAgent DBG: [C= ID=3D0x068e] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE= , NOTIFY2007/08/13 10:44:34.531 UserAgent DBG: [CID=3D0= x068e] Content-Length: 02007/08/13 10:44:34.531 UserAg= ent DBG: [CID=3D0x068e] 2007/08/13 10:44:34.531 Use= rAgent DBG: [CID=3D0x068e] 2007/08/13 10:44:34.531 = UserAgent DTL: [CID=3D0x0983] REGISTER: Registration Accepted2007/08/13 = 10:44:34.531 Transaction DTL: [CID=3D0x0983] NICT(3469070= 71) StateProceeding->StateCompleted2007/08/13 10:44:34.531 = Transaction DBG: [CID=3D0x0983] NICT(346907071) Timer E STOPPED2007= /08/13 10:44:34.531 Transaction DBG: [CID=3D0x0983] NICT(= 346907071) Timer F STOPPED2007/08/13 10:44:34.531 Transac= tion DBG: [CID=3D0x0983] NICT(346907071) Timer K( 5000 ms ) STARTED20= 07/08/13 10:44:39.375 SIP Timer Thread DBG: [CID=3D0x0983] NIC= T(346907070) Timer K( 5000 ms ) EXPIRED2007/08/13 10:44:39.375 = Transaction DTL: [CID=3D0x0983] NICT(346907070) Event( Timer-K = ) Interval: 50002007/08/13 10:44:39.375 Transaction DTL: = [CID=3D0x0983] NICT(346907070) Event(Final)2007/08/13 10:44:39.375 = SIP Timer Thread DBG: [CID=3D0x0983] NICT(346907071) Timer K( 50= 00 ms ) EXPIRED2007/08/13 10:44:39.375 Transaction DTL: [= CID=3D0x0983] NICT(346907071) Event( Timer-K ) Interval: 50002007/08/13 = 10:44:39.375 Transaction DTL: [CID=3D0x0983] NICT(3469070= 71) Event(Final)2007/08/13 10:44:39.375 Transaction Cleaner DB= G: [CID=3D0x0000] GC: First Stale Object SIPTransaction2007/08/13 10:44:39= .375 Transaction Cleaner DBG: [CID=3D0x0000] GC: First Stale Obj= ect SIPTransaction2007/08/13 10:44:39.375 GC::Collector DBG= : [CID=3D0x0983] TRANSACTION: (NICT) DESTROYED2007/08/13 10:44:39.375 = GC::Collector DTL: [CID=3D0x0983] NICT(346907071) *** DESTROY= ED *** - NICT|6c4347d0-64f9-1810-8fe2-e0ef3ed8ae95|z9hG4bKaa8c47d064f918109= 5afe0ef3ed8ae95|REGISTER2007/08/13 10:44:39.375 GC::Collector = DBG: [CID=3D0x0983] TRANSACTION: (NICT) DESTROYED2007/08/13 10:44:39.375= GC::Collector DTL: [CID=3D0x0983] NICT(346907070) *** D= ESTROYED *** - NICT|6c4347d0-64f9-1810-8fe2-e0ef3ed8ae95|z9hG4bK6c4347d064f= 9181095afe0ef3ed8ae95|REGISTER2007/08/13 10:44:43.859 Transport (INB= OUND) DTL: [CID=3D0x0b5f] IST(346907072) *** CREATED *** - IST|0e5a3e= 462d962e0025157f91145eb6a5@193.251.169.132|z9hG4bK6e8ff5ce|INVITE2007/08/13= 10:44:43.859 Transaction DTL: [CID=3D0x0b5f] IST(3469070= 72) Event(SIPMessage) - INVITE sip:5002@192.168.0.52:5060;transport=3Dud= p SIP/2.02007/08/13 10:44:43.859 Transaction DBG: [CID=3D= 0x0b5f] TRANSACTION: (IST) INVITE sip:5002@192.168.0.52:5060;transport=3Dud= p SIP/2.0 State: 02007/08/13 10:44:43.859 Transaction DTL= : [CID=3D0x0b5f] IST(346907072) StateIdle->StateProceeding2007/08/13 10:= 44:43.859 UserAgent INF: [CID=3D0x0b5f] Session CREATED= 2007/08/13 10:44:43.859 UserAgent INF: [CID=3D0x0b5f] *= ** CREATED *** Call Session2007/08/13 10:44:43.859 UserAge= nt DTL: [CID=3D0x0b5f] *** MESSAGE ARRIVAL *** for SIP Session 0e5a3e462= d962e0025157f91145eb6a5@193.251.169.1322007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] 2007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] INVITE sip:5002@192.168.0.52:5= 060;transport=3Dudp SIP/2.02007/08/13 10:44:43.859 UserAge= nt DBG: [CID=3D0x0b5f] From: "7000" <sip:7000@193.251.169.132>;tag= =3Das6e5e8e6a2007/08/13 10:44:43.859 UserAgent DBG: [CI= D=3D0x0b5f] To: <sip:5002@192.168.0.52:5060;transport=3Dudp>2007/08/13= 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] Via: SI= P/2.0/UDP 193.251.169.132:5060;branch=3Dz9hG4bK6e8ff5ce;rport=3D5060;receiv= ed=3D193.251.169.1322007/08/13 10:44:43.859 UserAgent D= BG: [CID=3D0x0b5f] CSeq: 102 INVITE2007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] Call-ID: 0e5a3e462d962e0025157f91= 145eb6a5@193.251.169.1322007/08/13 10:44:43.859 UserAgent = DBG: [CID=3D0x0b5f] Contact: <sip:7000@193.251.169.132>2007/08/13 10= :44:43.859 UserAgent DBG: [CID=3D0x0b5f] Date: Mon,= 13 Aug 2007 09:44:23 GMT2007/08/13 10:44:43.859 UserAgent= DBG: [CID=3D0x0b5f] User-Agent: Asterisk PBX2007/08/13 10:44:43.859= UserAgent DBG: [CID=3D0x0b5f] Max-Forwards: 702007= /08/13 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] A= llow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY2007/08/13= 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] Content= -Type: application/sdp2007/08/13 10:44:43.859 UserAgent = DBG: [CID=3D0x0b5f] Content-Length: 3402007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] 2007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] v=3D02007/08/13 10:44:43.= 859 UserAgent DBG: [CID=3D0x0b5f] o=3Droot 2241 224= 1 IN IP4 193.251.169.1322007/08/13 10:44:43.859 UserAgent = DBG: [CID=3D0x0b5f] s=3Dsession2007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] c=3DIN IP4 193.251.169.1322007/08/= 13 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] t=3D0= 02007/08/13 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f]= m=3Daudio 11240 RTP/AVP 18 97 3 0 8 1012007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] a=3Drtpmap:18 G729/80002007/= 08/13 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] a= =3Dfmtp:18 annexb=3Dno2007/08/13 10:44:43.859 UserAgent = DBG: [CID=3D0x0b5f] a=3Drtpmap:97 iLBC/80002007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] a=3Drtpmap:3 GSM/8000200= 7/08/13 10:44:43.859 UserAgent DBG: [CID=3D0x0b5f] = a=3Drtpmap:0 PCMU/80002007/08/13 10:44:43.859 UserAgent = DBG: [CID=3D0x0b5f] a=3Drtpmap:8 PCMA/80002007/08/13 10:44:43.859 = UserAgent DBG: [CID=3D0x0b5f] a=3Drtpmap:101 telephone-= event/80002007/08/13 10:44:43.859 UserAgent DBG: [CID= =3D0x0b5f] a=3Dfmtp:101 0-162007/08/13 10:44:43.859 Us= erAgent DBG: [CID=3D0x0b5f] a=3DsilenceSupp:off - - - -2007/08/13 10= :44:43.859 UserAgent DBG: [CID=3D0x0b5f] 2007/08/13= 10:44:43.875 Transaction DTL: [CID=3D0x0b5f] IST(3469070= 72) Event(SIPMessage) - SIP/2.0 180 Ringing2007/08/13 10:44:43.875 = Transaction DBG: [CID=3D0x0b5f] TRANSACTION: (IST) SIP/2.0 180= Ringing State: 22007/08/13 10:44:45.781 Transaction DTL:= [CID=3D0x0b5f] IST(346907072) Event(SIPMessage) - SIP/2.0 200 OK2007/08= /13 10:44:45.781 Transaction DBG: [CID=3D0x0b5f] TRANSACT= ION: (IST) SIP/2.0 200 OK State: 22007/08/13 10:44:45.781 Tr= ansaction DBG: [CID=3D0x0b5f] IST(346907072) Timer G STOPPED2007/08/1= 3 10:44:45.781 Transaction DBG: [CID=3D0x0b5f] IST(346907= 072) Timer H STOPPED2007/08/13 10:44:45.781 Transaction = DTL: [CID=3D0x0b5f] IST(346907072) StateProceeding->StateConfirmed2007= /08/13 10:44:45.781 Transaction DBG: [CID=3D0x0b5f] IST(3= 46907072) Timer I( 5000 ms ) STARTED2007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] 2007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] ACK sip:192.168.0.52:5060 SIP/= 2.02007/08/13 10:44:45.812 UserAgent DBG: [CID=3D0x0b5f= ] From: "7000" <sip:7000@193.251.169.132>;tag=3Das6e5e8e6a2007/08/13 10= :44:45.812 UserAgent DBG: [CID=3D0x0b5f] To: <sip:= 5002@192.168.0.52:5060;transport=3Dudp>;tag=3Dacd455d064f9181095afe0ef3ed8a= e952007/08/13 10:44:45.812 UserAgent DBG: [CID=3D0x0b5f= ] Via: SIP/2.0/UDP 193.251.169.132:5060;branch=3Dz9hG4bK7f6a2c7a;rport= =3D5060;received=3D193.251.169.1322007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] CSeq: 102 ACK2007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] Call-ID: 0e5a3e462d962= e0025157f91145eb6a5@193.251.169.1322007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] Contact: <sip:7000@193.251.169.132>20= 07/08/13 10:44:45.812 UserAgent DBG: [CID=3D0x0b5f] = User-Agent: Asterisk PBX2007/08/13 10:44:45.812 UserAgent= DBG: [CID=3D0x0b5f] Max-Forwards: 702007/08/13 10:44:45.812 = UserAgent DBG: [CID=3D0x0b5f] Content-Length: 02007/08/13 = 10:44:45.812 UserAgent DBG: [CID=3D0x0b5f] 2007/08/= 13 10:44:45.812 UserAgent DBG: [CID=3D0x0b5f] 2007/= 08/13 10:44:47.875 OnRelease:133f9c0 INF: [CID=3D0x0b5f] Sendin= g BYE2007/08/13 10:44:47.875 OnRelease:133f9c0 DTL: [CID=3D0x0b= 5f] NICT(346907073) *** CREATED *** - NICT|0e5a3e462d962e0025157f91145eb= 6a5@193.251.169.132|z9hG4bK2cef5bd064f9181095b0e0ef3ed8ae95|BYE2007/08/13 1= 0:44:47.875 Transaction DTL: [CID=3D0x0b5f] NICT(34690707= 3) Event(SIPMessage) - BYE sip:7000@193.251.169.132 SIP/2.02007/08/13 10= :44:47.875 Transaction DBG: [CID=3D0x0b5f] TRANSACTION: (= NICT) BYE sip:7000@193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:47.875 = Transaction DTL: [CID=3D0x0b5f] NICT(346907073) StateI= dle->StateTrying(BYE sip:7000@193.251.169.132 SIP/2.0)2007/08/13 10:44:47.8= 75 Transaction DBG: [CID=3D0x0b5f] NICT(346907073) Tim= er E( 500 ms ) STARTED2007/08/13 10:44:47.875 Transaction = DBG: [CID=3D0x0b5f] NICT(346907073) Timer F( 10000 ms ) STARTED2007/08/= 13 10:44:47.875 SIP Timer Thread DBG: [CID=3D0x0b5f] NICT(3469= 07073) Timer E( 500 ms ) EXPIRED2007/08/13 10:44:47.875 T= ransaction DTL: [CID=3D0x0b5f] NICT(346907073) Event( Timer-E ) Inter= val: 5002007/08/13 10:44:47.875 Transaction DBG: [CID=3D0= x0b5f] NICT(346907073) Timer E( 1000 ms ) STARTED2007/08/13 10:44:47.890= Transaction DTL: [CID=3D0x0b5f] NICT(346907073) Event= (SIPMessage) - SIP/2.0 200 OK2007/08/13 10:44:47.890 Transac= tion DBG: [CID=3D0x0b5f] TRANSACTION: (NICT) SIP/2.0 200 OK State: 12007= /08/13 10:44:47.890 Transaction DTL: [CID=3D0x0b5f] NICT(= 346907073) StateTrying->StateCompleted2007/08/13 10:44:47.890 = Transaction DBG: [CID=3D0x0b5f] NICT(346907073) Timer E STOPPED2= 007/08/13 10:44:47.890 Transaction DBG: [CID=3D0x0b5f] NI= CT(346907073) Timer F STOPPED2007/08/13 10:44:47.890 Tran= saction DBG: [CID=3D0x0b5f] NICT(346907073) Timer K( 5000 ms ) STARTE= D2007/08/13 10:44:47.890 UserAgent DTL: [CID=3D0x0b5f] = *** MESSAGE ARRIVAL *** for SIP Session 0e5a3e462d962e0025157f91145eb6a5@19= 3.251.169.1322007/08/13 10:44:47.890 UserAgent DBG: [CI= D=3D0x0b5f] 2007/08/13 10:44:47.890 UserAgent DBG: = [CID=3D0x0b5f] SIP/2.0 200 OK2007/08/13 10:44:47.890 U= serAgent DBG: [CID=3D0x0b5f] From: <sip:5002@192.168.0.52:5060;tran= sport=3Dudp>;tag=3Dacd455d064f9181095afe0ef3ed8ae952007/08/13 10:44:47.890 = UserAgent DBG: [CID=3D0x0b5f] To: <sip:7000@193.25= 1.169.132>;tag=3Das6e5e8e6a2007/08/13 10:44:47.890 UserAge= nt DBG: [CID=3D0x0b5f] Via: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2598= ;branch=3Dz9hG4bK2cef5bd064f9181095b0e0ef3ed8ae95;uas-addr=3D193.251.169.13= 2;rport=3D5060;received=3D192.168.0.522007/08/13 10:44:47.890 = UserAgent DBG: [CID=3D0x0b5f] CSeq: 2 BYE2007/08/13 10:44:47.890= UserAgent DBG: [CID=3D0x0b5f] Call-ID: 0e5a3e462d9= 62e0025157f91145eb6a5@193.251.169.1322007/08/13 10:44:47.890 = UserAgent DBG: [CID=3D0x0b5f] Contact: <sip:7000@193.251.169.132>= 2007/08/13 10:44:47.890 UserAgent DBG: [CID=3D0x0b5f] = User-Agent: Asterisk PBX2007/08/13 10:44:47.890 UserAge= nt DBG: [CID=3D0x0b5f] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REF= ER, SUBSCRIBE, NOTIFY2007/08/13 10:44:47.890 UserAgent = DBG: [CID=3D0x0b5f] X-Asterisk-HangupCause: Normal Clearing2007/08/13 1= 0:44:47.890 UserAgent DBG: [CID=3D0x0b5f] Content-L= ength: 02007/08/13 10:44:47.890 UserAgent DBG: [CID=3D0= x0b5f] 2007/08/13 10:44:47.890 UserAgent DBG: [CID= =3D0x0b5f] 2007/08/13 10:44:47.906 Transaction DTL: [= CID=3D0x0b5f] NICT(346907073) Event(SIPMessage) - SIP/2.0 200 OK2007/08/= 13 10:44:47.906 Transaction DBG: [CID=3D0x0b5f] TRANSACTI= ON: (NICT) SIP/2.0 200 OK State: 32007/08/13 10:44:48.578 Op= alGarbage DBG: [CID=3D0x0000] GC: First Stale Object CallSession2007/08= /13 10:44:48.578 GC::Collector INF: [CID=3D0x0b5f] *** DEST= ROYED *** Call Session2007/08/13 10:44:48.578 GC::Collector = INF: [CID=3D0x0b5f] CALL: Session DESTROYED2007/08/13 10:44:50.375 = SIP Timer Thread DBG: [CID=3D0x0b5f] IST(346907072) Timer I( 5000 = ms ) EXPIRED2007/08/13 10:44:50.375 Transaction DTL: [CID= =3D0x0b5f] IST(346907072) Event( Timer-I ) Interval: 50002007/08/13 10:4= 4:50.375 Transaction DTL: [CID=3D0x0b5f] IST(346907072) = Event(Final)2007/08/13 10:44:50.375 Transaction Cleaner DBG: [C= ID=3D0x0000] GC: First Stale Object SIPTransaction2007/08/13 10:44:50.375 = GC::Collector DBG: [CID=3D0x0b5f] TRANSACTION: (IST) DESTRO= YED2007/08/13 10:44:50.375 GC::Collector DTL: [CID=3D0x0b5f= ] IST(346907072) *** DESTROYED *** - IST|0e5a3e462d962e0025157f91145eb6a= 5@193.251.169.132|z9hG4bK6e8ff5ce|INVITE2007/08/13 10:44:51.906 A= ctiveSIPControl INF: [CID=3D0x097d] Session CREATED2007/08/13 10:44:51.9= 06 ActiveSIPControl INF: [CID=3D0x097d] *** CREATED *** Call S= ession2007/08/13 10:44:51.937 ActiveSIPControl DTL: [CID=3D0x0= 97d] ICT(346907074) *** CREATED *** - ICT|e11562d0-64f9-1810-8fe3-e0ef3e= d8ae95|z9hG4bKe11562d064f9181095b0e0ef3ed8ae95|INVITE2007/08/13 10:44:51.93= 7 Transaction DTL: [CID=3D0x097d] ICT(346907074) Event= (SIPMessage) - INVITE sip:9011@193.251.169.132 SIP/2.02007/08/13 10:44:51.9= 37 Transaction DBG: [CID=3D0x097d] TRANSACTION: (ICT) INV= ITE sip:9011@193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:51.953 = Transaction DTL: [CID=3D0x097d] ICT(346907074) Event(SIPMess= age) - INVITE sip:9011@193.251.169.132 SIP/2.02007/08/13 10:44:51.953 = Transaction DBG: [CID=3D0x097d] TRANSACTION: (ICT) INVITE sip:= 9011@193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:51.953 = Transaction DTL: [CID=3D0x097d] ICT(346907074) StateIdle->StateCalli= ng(INVITE sip:9011@193.251.169.132 SIP/2.0)2007/08/13 10:44:51.953 = Transaction DBG: [CID=3D0x097d] ICT(346907074) Timer A( 500 ms= ) STARTED2007/08/13 10:44:51.953 Transaction DBG: [CID= =3D0x097d] ICT(346907074) Timer B( 10000 ms ) STARTED2007/08/13 10:44:51= .953 Transaction DTL: [CID=3D0x097d] ICT(346907074) Ev= ent(SIPMessage) - SIP/2.0 407 Proxy Authentication Required2007/08/13 10:44= :51.953 Transaction DBG: [CID=3D0x097d] TRANSACTION: (ICT= ) SIP/2.0 407 Proxy Authentication Required State: 12007/08/13 10:44:51.953= Transaction DBG: [CID=3D0x097d] ICT(346907074) Timer = A STOPPED2007/08/13 10:44:51.953 Transaction DBG: [CID=3D= 0x097d] ICT(346907074) Timer B STOPPED2007/08/13 10:44:51.953 = Transaction DTL: [CID=3D0x097d] ICT(346907074) StateCalling->Sta= teCompleted(SIP/2.0 407 Proxy Authentication Required)2007/08/13 10:44:51.9= 53 Transaction DBG: [CID=3D0x097d] ICT(346907074) Time= r D( 32000 ms ) STARTED2007/08/13 10:44:51.953 UserAgent = DTL: [CID=3D0x097d] *** MESSAGE ARRIVAL *** for SIP Session e11562d0-64f9= -1810-8fe3-e0ef3ed8ae952007/08/13 10:44:51.953 UserAgent = DBG: [CID=3D0x097d] 2007/08/13 10:44:51.953 UserAgen= t DBG: [CID=3D0x097d] SIP/2.0 407 Proxy Authentication Required2007/= 08/13 10:44:51.953 UserAgent DBG: [CID=3D0x097d] Fr= om: 5002 <sip:5002@193.251.169.132>;tag=3De11562d064f9181095b1e0ef3ed8ae952= 007/08/13 10:44:51.953 UserAgent DBG: [CID=3D0x097d] = To: sip:9011@193.251.169.132;tag=3Das2d846fb92007/08/13 10:44:51.953 = UserAgent DBG: [CID=3D0x097d] Via: SIP/2.0/UDP 192.168.= 0.52:5060;iid=3D2598;branch=3Dz9hG4bKe11562d064f9181095b0e0ef3ed8ae95;uas-a= ddr=3D193.251.169.132;rport=3D5060;received=3D192.168.0.522007/08/13 10:44:= 51.953 UserAgent DBG: [CID=3D0x097d] CSeq: 4711 INV= ITE2007/08/13 10:44:51.953 UserAgent DBG: [CID=3D0x097d= ] Call-ID: e11562d0-64f9-1810-8fe3-e0ef3ed8ae952007/08/13 10:44:51.953 = UserAgent DBG: [CID=3D0x097d] User-Agent: Asterisk = PBX2007/08/13 10:44:51.953 UserAgent DBG: [CID=3D0x097d= ] Proxy-Authenticate: Digest algorithm=3DMD5, realm=3D"asterisk", nonce= =3D"2d71c4c3"2007/08/13 10:44:51.953 UserAgent DBG: [CI= D=3D0x097d] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE,= NOTIFY2007/08/13 10:44:51.953 UserAgent DBG: [CID=3D0x= 097d] Content-Length: 02007/08/13 10:44:51.953 UserAge= nt DBG: [CID=3D0x097d] 2007/08/13 10:44:51.953 User= Agent DBG: [CID=3D0x097d] 2007/08/13 10:44:51.968 = Call DTL: [CID=3D0x097d] ICT(346907075) *** CREATED *** - ICT|e11= 562d0-64f9-1810-8fe3-e0ef3ed8ae95|z9hG4bK4b2e62d064f9181095b1e0ef3ed8ae95|I= NVITE2007/08/13 10:44:51.968 Transaction DTL: [CID=3D0x09= 7d] ICT(346907075) Event(SIPMessage) - INVITE sip:9011@193.251.169.132 S= IP/2.02007/08/13 10:44:51.968 Transaction DBG: [CID=3D0x0= 97d] TRANSACTION: (ICT) INVITE sip:9011@193.251.169.132 SIP/2.0 State: 0200= 7/08/13 10:44:51.984 Transaction DTL: [CID=3D0x097d] ICT(= 346907075) Event(SIPMessage) - INVITE sip:9011@193.251.169.132 SIP/2.020= 07/08/13 10:44:51.984 Transaction DBG: [CID=3D0x097d] TRA= NSACTION: (ICT) INVITE sip:9011@193.251.169.132 SIP/2.0 State: 02007/08/13 = 10:44:51.984 Transaction DTL: [CID=3D0x097d] ICT(34690707= 5) StateIdle->StateCalling(INVITE sip:9011@193.251.169.132 SIP/2.0)2007/= 08/13 10:44:51.984 Transaction DBG: [CID=3D0x097d] ICT(34= 6907075) Timer A( 500 ms ) STARTED2007/08/13 10:44:51.984 = Transaction DBG: [CID=3D0x097d] ICT(346907075) Timer B( 10000 ms ) S= TARTED2007/08/13 10:44:51.984 Transaction DTL: [CID=3D0x0= 97d] ICT(346907075) Event(SIPMessage) - SIP/2.0 100 Trying2007/08/13 10:= 44:51.984 Transaction DBG: [CID=3D0x097d] TRANSACTION: (I= CT) SIP/2.0 100 Trying State: 12007/08/13 10:44:51.984 Trans= action DBG: [CID=3D0x097d] ICT(346907075) Timer A STOPPED2007/08/13 1= 0:44:51.984 Transaction DBG: [CID=3D0x097d] ICT(346907075= ) Timer B STOPPED2007/08/13 10:44:51.984 Transaction D= TL: [CID=3D0x097d] ICT(346907075) StateCalling->StateProceeding(SIP/2.0 = 100 Trying)2007/08/13 10:44:51.984 UserAgent DTL: [CID= =3D0x097d] *** MESSAGE ARRIVAL *** for SIP Session e11562d0-64f9-1810-8fe3-= e0ef3ed8ae952007/08/13 10:44:51.984 UserAgent DBG: [CID= =3D0x097d] 2007/08/13 10:44:51.984 UserAgent DBG: [= CID=3D0x097d] SIP/2.0 100 Trying2007/08/13 10:44:51.984 = UserAgent DBG: [CID=3D0x097d] From: 5002 <sip:5002@193.251.169.132= >;tag=3De11562d064f9181095b1e0ef3ed8ae952007/08/13 10:44:51.984 = UserAgent DBG: [CID=3D0x097d] To: sip:9011@193.251.169.1322007= /08/13 10:44:51.984 UserAgent DBG: [CID=3D0x097d] V= ia: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2598;branch=3Dz9hG4bK4b2e62d064f918= 1095b1e0ef3ed8ae95;uas-addr=3D193.251.169.132;rport=3D5060;received=3D192.1= 68.0.522007/08/13 10:44:51.984 UserAgent DBG: [CID=3D0x= 097d] CSeq: 4712 INVITE2007/08/13 10:44:51.984 UserAge= nt DBG: [CID=3D0x097d] Call-ID: e11562d0-64f9-1810-8fe3-e0ef3ed8ae95= 2007/08/13 10:44:51.984 UserAgent DBG: [CID=3D0x097d] = Contact: <sip:9011@193.251.169.132>2007/08/13 10:44:51.984 = UserAgent DBG: [CID=3D0x097d] User-Agent: Asterisk PBX2007/08/13= 10:44:51.984 UserAgent DBG: [CID=3D0x097d] Allow: = INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY2007/08/13 10:44= :51.984 UserAgent DBG: [CID=3D0x097d] Content-Lengt= h: 02007/08/13 10:44:51.984 UserAgent DBG: [CID=3D0x097= d] 2007/08/13 10:44:51.984 UserAgent DBG: [CID=3D0x= 097d] 2007/08/13 10:44:51.984 Call INF: [CID= =3D0x097d] Remote is TRYING the call2007/08/13 10:44:52.000 = Transaction DTL: [CID=3D0x097d] ICT(346907075) Event(SIPMessage) - SI= P/2.0 200 OK2007/08/13 10:44:52.000 Transaction DBG: [CID= =3D0x097d] TRANSACTION: (ICT) SIP/2.0 200 OK State: 22007/08/13 10:44:52.00= 0 Transaction DBG: [CID=3D0x097d] ICT(346907075) Timer= A STOPPED2007/08/13 10:44:52.000 Transaction DBG: [CID= =3D0x097d] ICT(346907075) Timer B STOPPED2007/08/13 10:44:52.000 = Transaction DTL: [CID=3D0x097d] ICT(346907075) StateProceedin= g->StateConnected(SIP/2.0 200 OK)2007/08/13 10:44:52.000 Tra= nsaction DBG: [CID=3D0x097d] ICT(346907075) Timer D( 32000 ms ) START= ED2007/08/13 10:44:52.000 UserAgent DTL: [CID=3D0x097d]= *** MESSAGE ARRIVAL *** for SIP Session e11562d0-64f9-1810-8fe3-e0ef3ed8ae= 952007/08/13 10:44:52.000 UserAgent DBG: [CID=3D0x097d]= 2007/08/13 10:44:52.000 UserAgent DBG: [CID=3D0x09= 7d] SIP/2.0 200 OK2007/08/13 10:44:52.000 UserAgent = DBG: [CID=3D0x097d] From: 5002 <sip:5002@193.251.169.132>;tag=3De11562= d064f9181095b1e0ef3ed8ae952007/08/13 10:44:52.000 UserAgen= t DBG: [CID=3D0x097d] To: sip:9011@193.251.169.132;tag=3Das61fdc2182= 007/08/13 10:44:52.000 UserAgent DBG: [CID=3D0x097d] = Via: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2598;branch=3Dz9hG4bK4b2e62d064f= 9181095b1e0ef3ed8ae95;uas-addr=3D193.251.169.132;rport=3D5060;received=3D19= 2.168.0.522007/08/13 10:44:52.000 UserAgent DBG: [CID= =3D0x097d] CSeq: 4712 INVITE2007/08/13 10:44:52.000 Us= erAgent DBG: [CID=3D0x097d] Call-ID: e11562d0-64f9-1810-8fe3-e0ef3ed= 8ae952007/08/13 10:44:52.000 UserAgent DBG: [CID=3D0x09= 7d] Contact: <sip:9011@193.251.169.132>2007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] User-Agent: Asterisk PBX2007/= 08/13 10:44:52.000 UserAgent DBG: [CID=3D0x097d] Al= low: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY2007/08/13 = 10:44:52.000 UserAgent DBG: [CID=3D0x097d] Content-= Type: application/sdp2007/08/13 10:44:52.000 UserAgent = DBG: [CID=3D0x097d] Content-Length: 2432007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] 2007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] v=3D02007/08/13 10:44:52.0= 00 UserAgent DBG: [CID=3D0x097d] o=3Droot 2241 2241= IN IP4 193.251.169.1322007/08/13 10:44:52.000 UserAgent = DBG: [CID=3D0x097d] s=3Dsession2007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] c=3DIN IP4 193.251.169.1322007/08/1= 3 10:44:52.000 UserAgent DBG: [CID=3D0x097d] t=3D0 = 02007/08/13 10:44:52.000 UserAgent DBG: [CID=3D0x097d] = m=3Daudio 11894 RTP/AVP 18 1012007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] a=3Drtpmap:18 G729/80002007/08/13 10:4= 4:52.000 UserAgent DBG: [CID=3D0x097d] a=3Dfmtp:18 = annexb=3Dno2007/08/13 10:44:52.000 UserAgent DBG: [CID= =3D0x097d] a=3Drtpmap:101 telephone-event/80002007/08/13 10:44:52.000 = UserAgent DBG: [CID=3D0x097d] a=3Dfmtp:101 0-162007/= 08/13 10:44:52.000 UserAgent DBG: [CID=3D0x097d] a= =3DsilenceSupp:off - - - -2007/08/13 10:44:52.000 UserAgen= t DBG: [CID=3D0x097d] 2007/08/13 10:44:52.015 = Call INF: [CID=3D0x097d] Remote is CONNECTED2007/08/13 10:44:52.031 = Call DBG: [CID=3D0x097d] 2007/08/13 10:44:52.031 = Call DBG: [CID=3D0x097d] ACK sip:9011@193.251.1= 69.132 SIP/2.02007/08/13 10:44:52.031 Call DBG: [C= ID=3D0x097d] From: <sip:5002@193.251.169.132>;tag=3De11562d064f9181095= b1e0ef3ed8ae952007/08/13 10:44:52.031 Call DBG: [C= ID=3D0x097d] To: <sip:9011@193.251.169.132>;tag=3Das61fdc2182007/08/13= 10:44:52.031 Call DBG: [CID=3D0x097d] Via: SI= P/2.0/UDP 192.168.0.52:5060;branch=3Dz9hG4bKb54662d064f9181095b1e0ef3ed8ae9= 5;rport2007/08/13 10:44:52.031 Call DBG: [CID=3D0x= 097d] CSeq: 4712 ACK2007/08/13 10:44:52.031 Call = DBG: [CID=3D0x097d] Call-ID: e11562d0-64f9-1810-8fe3-e0ef3ed8ae95200= 7/08/13 10:44:52.031 Call DBG: [CID=3D0x097d] = Contact: "5002" <sip:5002@192.168.0.52:5060>2007/08/13 10:44:52.031 = Call DBG: [CID=3D0x097d] Content-Length: 02007/08/13 = 10:44:52.031 Call DBG: [CID=3D0x097d] 2007/08/= 13 10:44:52.031 Call DBG: [CID=3D0x097d] 2007/= 08/13 10:44:52.875 SIP Timer Thread DBG: [CID=3D0x0b5f] NICT(3= 46907073) Timer K( 5000 ms ) EXPIRED2007/08/13 10:44:52.875 = Transaction DTL: [CID=3D0x0b5f] NICT(346907073) Event( Timer-K ) I= nterval: 50002007/08/13 10:44:52.875 Transaction DTL: [CI= D=3D0x0b5f] NICT(346907073) Event(Final)2007/08/13 10:44:52.875 T= ransaction Cleaner DBG: [CID=3D0x0000] GC: First Stale Object SIPTransa= ction2007/08/13 10:44:52.875 GC::Collector DBG: [CID=3D0x0b= 5f] TRANSACTION: (NICT) DESTROYED2007/08/13 10:44:52.890 GC::C= ollector DTL: [CID=3D0x0b5f] NICT(346907073) *** DESTROYED *** - NICT= |0e5a3e462d962e0025157f91145eb6a5@193.251.169.132|z9hG4bK2cef5bd064f9181095= b0e0ef3ed8ae95|BYE2007/08/13 10:44:55.359 OnRelease:1345e48 INF= : [CID=3D0x097d] Sending BYE2007/08/13 10:44:55.359 OnRelease:1345= e48 DTL: [CID=3D0x097d] NICT(346907076) *** CREATED *** - NICT|e11562= d0-64f9-1810-8fe3-e0ef3ed8ae95|z9hG4bKc15a67d064f9181095b1e0ef3ed8ae95|BYE2= 007/08/13 10:44:55.359 Transaction DTL: [CID=3D0x097d] NI= CT(346907076) Event(SIPMessage) - BYE sip:9011@193.251.169.132 SIP/2.020= 07/08/13 10:44:55.359 Transaction DBG: [CID=3D0x097d] TRA= NSACTION: (NICT) BYE sip:9011@193.251.169.132 SIP/2.0 State: 02007/08/13 10= :44:55.359 Transaction DTL: [CID=3D0x097d] NICT(346907076= ) StateIdle->StateTrying(BYE sip:9011@193.251.169.132 SIP/2.0)2007/08/13= 10:44:55.359 Transaction DBG: [CID=3D0x097d] NICT(346907= 076) Timer E( 500 ms ) STARTED2007/08/13 10:44:55.359 Tra= nsaction DBG: [CID=3D0x097d] NICT(346907076) Timer F( 10000 ms ) STAR= TED2007/08/13 10:44:55.375 Transaction DTL: [CID=3D0x097d= ] NICT(346907076) Event(SIPMessage) - SIP/2.0 200 OK2007/08/13 10:44:55.= 375 Transaction DBG: [CID=3D0x097d] TRANSACTION: (NICT) S= IP/2.0 200 OK State: 12007/08/13 10:44:55.375 Transaction = DTL: [CID=3D0x097d] NICT(346907076) StateTrying->StateCompleted2007/08/= 13 10:44:55.375 Transaction DBG: [CID=3D0x097d] NICT(3469= 07076) Timer E STOPPED2007/08/13 10:44:55.375 Transaction= DBG: [CID=3D0x097d] NICT(346907076) Timer F STOPPED2007/08/13 10:44:= 55.375 Transaction DBG: [CID=3D0x097d] NICT(346907076) = Timer K( 5000 ms ) STARTED2007/08/13 10:44:55.375 UserAge= nt DTL: [CID=3D0x097d] *** MESSAGE ARRIVAL *** for SIP Session e11562d0-= 64f9-1810-8fe3-e0ef3ed8ae952007/08/13 10:44:55.375 UserAge= nt DBG: [CID=3D0x097d] 2007/08/13 10:44:55.375 User= Agent DBG: [CID=3D0x097d] SIP/2.0 200 OK2007/08/13 10:44:55.375 = UserAgent DBG: [CID=3D0x097d] From: <sip:5002@193.251.= 169.132>;tag=3De11562d064f9181095b1e0ef3ed8ae952007/08/13 10:44:55.375 = UserAgent DBG: [CID=3D0x097d] To: <sip:9011@193.251.16= 9.132>;tag=3Das61fdc2182007/08/13 10:44:55.375 UserAgent = DBG: [CID=3D0x097d] Via: SIP/2.0/UDP 192.168.0.52:5060;iid=3D2598;bra= nch=3Dz9hG4bKc15a67d064f9181095b1e0ef3ed8ae95;uas-addr=3D193.251.169.132;rp= ort=3D5060;received=3D192.168.0.522007/08/13 10:44:55.375 = UserAgent DBG: [CID=3D0x097d] CSeq: 4713 BYE2007/08/13 10:44:55.375 = UserAgent DBG: [CID=3D0x097d] Call-ID: e11562d0-64f= 9-1810-8fe3-e0ef3ed8ae952007/08/13 10:44:55.375 UserAgent = DBG: [CID=3D0x097d] Contact: <sip:9011@193.251.169.132>2007/08/13 10= :44:55.375 UserAgent DBG: [CID=3D0x097d] User-Agent= : Asterisk PBX2007/08/13 10:44:55.375 UserAgent DBG: [C= ID=3D0x097d] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE= , NOTIFY2007/08/13 10:44:55.375 UserAgent DBG: [CID=3D0= x097d] Content-Length: 02007/08/13 10:44:55.375 UserAg= ent DBG: [CID=3D0x097d] 2007/08/13 10:44:55.375 Use= rAgent DBG: [CID=3D0x097d] 2007/08/13 10:44:55.578 Op= alGarbage DBG: [CID=3D0x0000] GC: First Stale Object CallSession2007/08= /13 10:44:55.578 GC::Collector INF: [CID=3D0x097d] *** DEST= ROYED *** Call Session2007/08/13 10:44:55.578 GC::Collector = INF: [CID=3D0x097d] CALL: Session DESTROYED2007/08/13 10:44:57.671 = ActiveSIPControl INF: [CID=3D0x09ac] Session CREATED2007/08/13 10:44:= 57.687 ActiveSIPControl INF: [CID=3D0x09ac] *** CREATED *** Ca= ll Session2007/08/13 10:44:57.703 ActiveSIPControl DTL: [CID= =3D0x09ac] ICT(346907077) *** CREATED *** - ICT|13e26ad0-64f9-1810-8fe4-= e0ef3ed8ae95|z9hG4bK2ee86ad064f9181095b1e0ef3ed8ae95|INVITE2007/08/13 10:44= :57.703 Transaction DTL: [CID=3D0x09ac] ICT(346907077) = Event(SIPMessage) - INVITE sip:9011@193.251.169.132 SIP/2.02007/08/13 10:4= 4:57.703 Transaction DBG: [CID=3D0x09ac] TRANSACTION: (IC= T) INVITE sip:9011@193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:57.718 = Transaction DTL: [CID=3D0x09ac] ICT(346907077) Event(S= IPMessage) - INVITE sip:9011@193.251.169.132 SIP/2.02007/08/13 10:44:57.718= Transaction DBG: [CID=3D0x09ac] TRANSACTION: (ICT) INVIT= E sip:9011@193.251.169.132 SIP/2.0 State: 02007/08/13 10:44:57.718 = Transaction DTL: [CID=3D0x09ac] ICT(346907077) StateIdle->Stat= eCalling(INVITE sip:9011@193.251.169.132 SIP/2.0)2007/08/13 10:44:57.718 = Transaction DBG: [CID=3D0x09ac] ICT(346907077) Timer A( = 500 ms ) STARTED2007/08/13 10:44:57.718 Transaction DBG: = [CID=3D0x09ac] ICT(346907077) Timer B( 10000 ms ) STARTED2007/08/13 10:4= 4:57.734 Transaction DTL: [CID=3D0x09ac] ICT(346907077) = Event(SIPMessage) - SIP/2.0 407 Proxy Authentication Required2007/08/13 1= 0:44:57.734 Transaction DBG: [CID=3D0x09ac] TRANSACTION: = (ICT) SIP/2.0 407 Proxy Authentication Required State: 12007/08/13 10:44:57= .734 Transaction DBG: [CID=3D0x09ac] ICT(346907077) Ti= mer A STOPPED2007/08/13 10:44:57.734 Transaction DBG: [CI= D=3D0x09ac] ICT(346907077) Timer B STOPPED2007/08/13 10:44:57.734 = Transaction DTL: [CID=3D0x09ac] ICT(346907077) StateCalling-= >StateCompleted(SIP/2.0 407 Proxy Authentication Required)2007/08/13 10:44:= 57.734 Transaction DBG: [CID=3D0x09ac] ICT(346907077) = Timer D( 32000 ms ) STARTED2007/08/13 10:44:57.734 UserAge= nt DTL: [CID=3D0x09ac] *** MESSAGE ARRIVAL *** for SIP Session 13e26ad0-= 64f9-1810-8fe4-e0ef3ed8ae952007/08/13 10:44:57.734 UserAge= nt DBG: [CID=3D0x09ac] 2007/08/13 10:44:57.734 User= Agent DBG: [CID=3D0x09ac] SIP/2.0 407 Proxy Authentication Required2= 007/08/13 10:44:57.734 UserAgent DBG: [CID=3D0x09ac] = From: 5002 <sip:5002@193.251.169.132>;tag=3D2ee86ad064f9181095b2e0ef3ed8a= e952007/08/13 10:44:57.734 UserAgent DBG: [CID=3D0x09ac= ] To: sip:9011@193.251.169.132;tag=3Das71580efb2007/08/13 10:44:57.734 = UserAgent DBG: [CID=3D0x09ac] Via: SIP/2.0/UDP 192.= 168.0.52:5060;iid=3D2598;branch=3Dz9hG4bK2ee86ad064f9181095b1e0ef3ed8ae95;u= as-addr=3D193.251.169.132;rport=3D5060;received=3D192.168.0.522007/08/13 10= :44:57.734 UserAgent DBG: [CID=3D0x09ac] CSeq: 4711= INVITE2007/08/13 10:44:57.734 UserAgent DBG: [CID=3D0x= 09ac] Call-ID: 13e26ad0-64f9-1810-8fe4-e0ef3ed8ae952007/08/13 10:44:57.= 734 UserAgent DBG: [CID=3D0x09ac] User-Agent: Aster= isk PBX2007/08/13 10:44:57.734 UserAgent DBG: [CID=3D0x= 09ac] Proxy-Authenticate: Digest algorithm=3DMD5, realm=3D"asterisk", n= once=3D"4a4e962f"2007/08/13 10:44:57.734 UserAgent DBG:= [CID=3D0x09ac] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCR= IBE, NOTIFY2007/08/13 10:44:57.734 UserAgent DBG: [CID= =3D0x09ac] Content-Length: 02007/08/13 10:44:57.734 Us= erAgent DBG: [CID=3D0x09ac] 2007/08/13 10:44:57.734 = UserAgent DBG: [CID=3D0x09ac] 2007/08/13 10:44:57.734 = Call DTL: [CID=3D0x09ac] ICT(346907078) *** CREATED *** - IC= T|13e26ad0-64f9-1810-8fe4-e0ef3ed8ae95|z9hG4bK7dfa6ad064f9181095b2e0ef3ed8a= e95|INVITE2007/08/13 10:44:57.734 Transaction DTL: [CID= =3D0x09ac] ICT(346907078) Event(SIPMessage) - INVITE sip:9011@193.251.16= 9.132 SIP/2.02007/08/13 10:44:57.734 Transaction DBG: [CI= D=3D0x09ac] TRANSACTION: (ICT) INVITE sip:9011@193.251.169.132 SIP/2.0 Stat= e: 02007/08/13 10:44:57.750 Transaction DTL: [CID=3D0x09a= c] ICT(346907078) Event(SIPMessage) - INVITE sip:9011@193.251.169.132 SI= P/2.02007/08/13 10:44:57.750 Transaction DBG: [CID=3D0x09= ac] TRANSACTION: (ICT) INVITE sip:9011@193.251.169.132 SIP/2.0 State: 02007= /08/13 10:44:57.750 Transaction DTL: [CID=3D0x09ac] ICT(3= 46907078) StateIdle->StateCalling(INVITE sip:9011@193.251.169.132 SIP/2.= 0)2007/08/13 10:44:57.750 Transaction DBG: [CID=3D0x09ac]= ICT(346907078) Timer A( 500 ms ) STARTED2007/08/13 10:44:57.750 = Transaction DBG: [CID=3D0x09ac] ICT(346907078) Timer B( 10000= ms ) STARTED2007/08/13 10:45:49.343 ActiveSIPControl INF: [CI= D=3D0x068e] Session CREATED2007/08/13 10:45:49.343 ActiveSIPContr= ol INF: [CID=3D0x068e] *** CREATED *** CLIENT REGISTER Session REGISTER-= 5002@193.251.169.1322007/08/13 10:45:49.343 ActiveSIPControl D= TL: [CID=3D0x0919] REGISTER: Starting Registration Process2007/08/13 10:45:= 49.343 ActiveSIPControl DTL: [CID=3D0x068e] 2007/08/13 10:= 45:49.343 ActiveSIPControl DTL: [CID=3D0x068e] REGISTER si= p:193.251.169.132 SIP/2.02007/08/13 10:45:49.343 ActiveSIPControl= DTL: [CID=3D0x068e] From: 5002 <sip:5002@193.251.169.132>;tag=3D67b= ab9d064f9181084d2ea360449d2242007/08/13 10:45:49.343 ActiveSIPCon= trol DTL: [CID=3D0x068e] To: sip:5002@193.251.169.1322007/08/13 10:4= 5:49.343 ActiveSIPControl DTL: [CID=3D0x068e] Via: SIP/2.0= /UDP 192.168.0.52:5060;branch=3Dz9hG4bK67bab9d064f9181084d3ea360449d224;rpo= rt2007/08/13 10:45:49.343 ActiveSIPControl DTL: [CID=3D0x068e]= CSeq: 1 REGISTER2007/08/13 10:45:49.343 ActiveSIPControl = DTL: [CID=3D0x068e] Call-ID: 67bab9d0-64f9-1810-96ec-ea360449d2242007/0= 8/13 10:45:49.343 ActiveSIPControl DTL: [CID=3D0x068e] Con= tact: "5002" <sip:5002@192.168.0.52:5060;transport=3Dudp>2007/08/13 10:45:4= 9.343 ActiveSIPControl DTL: [CID=3D0x068e] Expires: 360020= 07/08/13 10:45:49.343 ActiveSIPControl DTL: [CID=3D0x068e] = Max-Forwards: 102007/08/13 10:45:49.343 ActiveSIPControl DTL:= [CID=3D0x068e] Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, = OPTIONS2007/08/13 10:45:49.343 ActiveSIPControl DTL: [CID=3D0x= 068e] Content-Length: 02007/08/13 10:45:49.343 ActiveSIPContr= ol DTL: [CID=3D0x068e] 2007/08/13 10:45:49.343 ActiveSIPCo= ntrol DTL: [CID=3D0x068e] 2007/08/13 10:45:49.343 ActiveSI= PControl DTL: [CID=3D0x0919] NICT(346982097) *** CREATED *** - NICT|6= 7bab9d0-64f9-1810-96ec-ea360449d224|z9hG4bK67bab9d064f9181084d3ea360449d224= |REGISTER2007/08/13 10:45:49.343 Transaction DTL: [CID=3D= 0x0919] NICT(346982097) Event(SIPMessage) - REGISTER sip:193.251.169.132= SIP/2.02007/08/13 10:45:49.343 Transaction DBG: [CID=3D0= x0919] TRANSACTION: (NICT) REGISTER sip:193.251.169.132 SIP/2.0 State: 0200= 7/08/13 10:45:49.343 Transaction DTL: [CID=3D0x0919] NICT= (346982097) StateIdle->StateTrying(REGISTER sip:193.251.169.132 SIP/2.0)= 2007/08/13 10:45:49.343 Transaction DBG: [CID=3D0x0919] N= ICT(346982097) Timer E( 500 ms ) STARTED2007/08/13 10:45:49.343 = Transaction DBG: [CID=3D0x0919] NICT(346982097) Timer F( 10000= ms ) STARTED2007/08/13 10:45:49.406 SIP Timer Thread DBG: [CI= D=3D0x0919] NICT(346982097) Timer E( 500 ms ) EXPIRED2007/08/13 10:45:49= .406 Transaction DTL: [CID=3D0x0919] NICT(346982097) E= vent( Timer-E ) Interval: 5002007/08/13 10:45:49.406 Transac= tion DBG: [CID=3D0x0919] NICT(346982097) Timer E( 1000 ms ) STARTED20= 07/08/13 10:45:49.515 Transaction DTL: [CID=3D0x0919] NIC= T(346982097) Event(SIPMessage) - SIP/2.0 100 Trying2007/08/13 10:45:49.5= 15 Transaction DBG: [CID=3D0x0919] TRANSACTION: (NICT) SI= P/2.0 100 Trying State: 12007/08/13 10:45:49.515 Transaction= DTL: [CID=3D0x0919] NICT(346982097) StateTrying->StateProceeding2007= /08/13 10:45:49.515 Transaction DTL: [CID=3D0x0919] NICT(= 346982097) Event(SIPMessage) - SIP/2.0 401 Unauthorized2007/08/13 10:45:= 49.515 Transaction DBG: [CID=3D0x0919] TRANSACTION: (NICT= ) SIP/2.0 401 Unauthorized State: 22007/08/13 10:45:49.515 T= ransaction DTL: [CID=3D0x0919] NICT(346982097) StateProceeding->State= Completed2007/08/13 10:45:49.515 Transaction DBG: [CID=3D= 0x0919] NICT(346982097) Timer E STOPPED2007/08/13 10:45:49.515 = Transaction DBG: [CID=3D0x0919] NICT(346982097) Timer F STOPPED= 2007/08/13 10:45:49.515 Transaction DBG: [CID=3D0x0919] N= ICT(346982097) Timer K( 5000 ms ) STARTED2007/08/13 10:45:49.515 = UserAgent DBG: [CID=3D0x068e] 2007/08/13 10:45:49.515 = UserAgent DBG: [CID=3D0x068e] SIP/2.0 401 Unauthorized2= 007/08/13 10:45:49.515 UserAgent DBG: [CID=3D0x068e] = From: 5002 <sip:5002@193.251.169.132>;tag=3D67bab9d064f9181084d2ea360449d= 2242007/08/13 10:45:49.515 UserAgent DBG: [CID=3D0x068e= ] To: sip:5002@193.251.169.132;tag=3Das612e6cc02007/08/13 10:45:49.515 = UserAgent DBG: [CID=3D0x068e] Via: SIP/2.0/UDP 192.= 168.0.52:5060;iid=3D1421;branch=3Dz9hG4bK67bab9d064f9181084d3ea360449d224;u= as-addr=3D193.251.169.132;rport=3D5060;received=3D192.168.0.522007/08/13 10= :45:49.515 UserAgent DBG: [CID=3D0x068e] CSeq: 1 RE= GISTER2007/08/13 10:45:49.515 UserAgent DBG: [CID=3D0x0= 68e] Call-ID: 67bab9d0-64f9-1810-96ec-ea360449d2242007/08/13 10:45:49.5= 15 UserAgent DBG: [CID=3D0x068e] User-Agent: Asteri= sk PBX2007/08/13 10:45:49.515 UserAgent DBG: [CID=3D0x0= 68e] WWW-Authenticate: Digest algorithm=3DMD5, realm=3D"asterisk", nonc= e=3D"32f03864"2007/08/13 10:45:49.515 UserAgent DBG: [C= ID=3D0x068e] Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE= , NOTIFY2007/08/13 10:45:49.515 UserAgent DBG: [CID=3D0= x068e] Content-Length: 02007/08/13 10:45:49.515 UserAg= ent DBG: [CID=3D0x068e] 2007/08/13 10:45:49.515 Use= rAgent DBG: [CID=3D0x068e] 2007/08/13 10:45:49.515 = UserAgent DTL: [CID=3D0x0919] REGISTER: Registration being authenticated= 2007/08/13 10:45:49.515 UserAgent DTL: [CID=3D0x0919] N= ICT(346982098) *** CREATED *** - NICT|67bab9d0-64f9-1810-96ec-ea360449d2= 24|z9hG4bK8afdb9d064f9181084d4ea360449d224|REGISTER2007/08/13 10:45:49.515 = Transaction DTL: [CID=3D0x0919] NICT(346982098) Event(= SIPMessage) - REGISTER sip:193.251.169.132 SIP/2.02007/08/13 10:45:49.515 = Transaction DBG: [CID=3D0x0919] TRANSACTION: (NICT) REGIST= ER sip:193.251.169.132 SIP/2.0 State: 02007/08/13 10:45:49.515 = Transaction DTL: [CID=3D0x0919] NICT(346982098) StateIdle->StateTr= ying(REGISTER sip:193.251.169.132 SIP/2.0)2007/08/13 10:45:49.515 = Transaction DBG: [CID=3D0x0919] NICT(346982098) Timer E( 500 ms= ) STARTED2007/08/13 10:45:49.515 Transaction DBG: [CID= =3D0x0919] NICT(346982098) Timer F( 10000 ms ) STARTED2007/08/13 10:45:4= 9.531 Transaction DTL: [CID=3D0x0919] NICT(346982097) = Event(SIPMessage) - SIP/2.0 100 Trying2007/08/13 10:45:49.531 = Transaction DBG: [CID=3D0x0919] TRANSACTION: (NICT) SIP/2.0 100 Trying= State: 32007/08/13 10:45:49.531 Transaction DTL: [CID=3D= 0x0919] NICT(346982097) Event(SIPMessage) - SIP/2.0 401 Unauthorized2007= /08/13 10:45:49.531 Transaction DBG: [CID=3D0x0919] TRANS= ACTION: (NICT) SIP/2.0 401 Unauthorized State: 32007/08/13 10:45:49.546 = Transaction DTL: [CID=3D0x0919] NICT(346982098) Event(SIP= Message) - SIP/2.0 100 Trying2007/08/13 10:45:49.546 Transac= tion DBG: [CID=3D0x0919] TRANSACTION: (NICT) SIP/2.0 100 Trying State: 1= 2007/08/13 10:45:49.546 Transaction DTL: [CID=3D0x0919] N= ICT(346982098) StateTrying->StateProceeding2007/08/13 10:45:49.546 = Transaction DTL: [CID=3D0x0919] NICT(346982098) Event(SIPMe= ssage) - SIP/2.0 200 OK2007/08/13 10:45:49.546 Transaction = DBG: [CID=3D0x0919] TRANSACTION: (NICT) SIP/2.0 200 OK State: 22007/08/13= 10:45:49.546 Transaction DTL: [CID=3D0x0919] NICT(346982= 098) StateProceeding->StateCompleted2007/08/13 10:45:49.546 = Transaction DBG: [CID=3D0x0919] NICT(346982098) Timer E STOPPED200= 7/08/13 10:45:49.546 Transaction DBG: [CID=3D0x0919] NICT= (346982098) Timer F STOPPED2007/08/13 10:45:49.546 Transa= ction DBG: [CID=3D0x0919] NICT(346982098) Timer K( 5000 ms ) STARTED2= 007/08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] = 2007/08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e]= SIP/2.0 200 OK2007/08/13 10:45:49.546 UserAgent DB= G: [CID=3D0x068e] From: 5002 <sip:5002@193.251.169.132>;tag=3D8afdb9d06= 4f9181084d3ea360449d2242007/08/13 10:45:49.546 UserAgent = DBG: [CID=3D0x068e] To: sip:5002@193.251.169.132;tag=3Das612e6cc02007= /08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] V= ia: SIP/2.0/UDP 192.168.0.52:5060;iid=3D1421;branch=3Dz9hG4bK8afdb9d064f918= 1084d4ea360449d224;uas-addr=3D193.251.169.132;rport=3D5060;received=3D192.1= 68.0.522007/08/13 10:45:49.546 UserAgent DBG: [CID=3D0x= 068e] CSeq: 2 REGISTER2007/08/13 10:45:49.546 UserAgen= t DBG: [CID=3D0x068e] Call-ID: 67bab9d0-64f9-1810-96ec-ea360449d2242= 007/08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] = Contact: <sip:5002@192.168.0.52:5060;transport=3Dudp>;expires=3D36002007/= 08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] Da= te: Mon, 13 Aug 2007 09:45:29 GMT2007/08/13 10:45:49.546 U= serAgent DBG: [CID=3D0x068e] User-Agent: Asterisk PBX2007/08/13 10:4= 5:49.546 UserAgent DBG: [CID=3D0x068e] Expires: 360= 02007/08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] = Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY2007/= 08/13 10:45:49.546 UserAgent DBG: [CID=3D0x068e] Co= ntent-Length: 02007/08/13 10:45:49.546 UserAgent DBG: [= CID=3D0x068e] 2007/08/13 10:45:49.546 UserAgent DBG= : [CID=3D0x068e] 2007/08/13 10:45:49.546 UserAgent = DTL: [CID=3D0x0919] REGISTER: Registration Accepted> Date: Mon, 13 Aug 2007= 17:20:42 +0800> From: ip...@so...> To: opensipstack-devel@li= sts.sourceforge.net> Subject: Re: [OpenSIPStack] ATLSIP and ntdll.dll cras= hing> > i think it's unlikely that this is caused by processor > incompatib= ility... can I get a copy of your log files? i'll try and see > what's caus= ing this.> > Yacine Auczone wrote:> > Hello,I'm getting the same problem ev= en with Windows XP Pro SP2 and> > for me it works well on two laptops runni= ng on both Home edition and> > Media center Edition.Is it possible that ATL= SIP can have incompatibility with processors?Because i tested it on 6 Celer= on PCs and two P4 running Windows XP PRO and it always crashing after some = calls.> Date: Mon, 13 Aug 2007 10:38:56 +0800> From: ipinzon@solegysystems.= com> To: ope...@li...> Subject: Re: [OpenSIPSta= ck] ATLSIP and ntdll.dll crashing> > Whit,> > Can I have a copy of your lo= g (sip.log) after ATLSIP crashes?> > - Ilian> > Whit Thiele wrote:> > Ilian= ,> >> > I created a VS deployment project very similar to the OSS phone. I'= ve also> > included most of the CRT/ATL modules I think I need. I'm assumin= g that since> > it works for a couple calls that side of things should be f= ine. Is there a> > complete list of the modules which should be included? I= s there a DLL> > conflict with certain systems? I've used OSSPhone as a ref= erence project for> > deployment. I wouldn't have thought there would be a = huge difference between> > XP Pro and XP Home. I've been running this softp= hone on my dev box, but of> > course it may have many more of the libraries= already installed because of> > the development enviroments. > >> > So far= I've tried:> >> > Completely updated the machine with Windows Update (in c= ase)> > Repaired .NET 2.0 > > Wrapping some exception handling code in the = softphone > >> > But no luck so far.> >> > The only other thing I think may= be causing this is not wrapping a Mutex> > around my MakeCall function lik= e OSS phone does. Perhaps too many events are> > being fired at the same ti= me. (I'm totally guessing)> >> > Let me know if you have suggestions or fin= d anything out!> > > >> > Whit> >> >> > -----Original Message-----> > From= : ope...@li...> > [mailto:opensipstack-= dev...@li...] On Behalf Of Ilian> > Jeri C. Pinzon> = > Sent: Friday, August 10, 2007 2:20 AM> > To: ope...@li...u= rceforge.net> > Subject: Re: [OpenSIPStack] ATLSIP and ntdll.dll crashing> = >> > Hi Whit,> >> > I'm on a XP Pro box today so I can't reproduce this yet= . How are you > > deploying your softphone to XP Home? If it's via a VS Se= tup project, try > > packaging it with the appropriate CRT and ATL merge mo= dules (and the > > policies that come with them).> >> > Regards,> > Ilian> = >> > Whit Thiele wrote:> > > >> Hey Guys,> >>> >> I was going to post thi= s on the ATLSIP list, but it bounced back to me.> >> (Maybe not working yet= ?)> >>> >>> >>> >> Anyway, I've been using ATLSIP for some time now, with p= retty good> >> > > success.> > > >> I'm currently having a very bizar= re issue. I've built a C# softphone and> >> > > it> > > >> runs fine = on XP Pro machines. However, when it's installed on XP Home> >> > > box= es,> > > >> it sporadically crashes, giving the windows Send/Don't Send b= ig report.> >>> >> The module which is affected and causing the crash is ... [truncated message content] |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 09:20:56
|
i think it's unlikely that this is caused by processor=20 incompatibility... can I get a copy of your log files? i'll try and see=20 what's causing this. Yacine Auczone wrote: > Hello,I'm getting the same problem even with Windows XP Pro SP2 and > for me it works well on two laptops running on both Home edition and > Media center Edition.Is it possible that ATLSIP can have incompatibilit= y with processors?Because i tested it on 6 Celeron PCs and two P4 running= Windows XP PRO and it always crashing after some calls.> Date: Mon, 13 A= ug 2007 10:38:56 +0800> From: ip...@so...> To: opensipstack= -d...@li...> Subject: Re: [OpenSIPStack] ATLSIP and ntd= ll.dll crashing> > Whit,> > Can I have a copy of your log (sip.log) after= ATLSIP crashes?> > - Ilian> > Whit Thiele wrote:> > Ilian,> >> > I creat= ed a VS deployment project very similar to the OSS phone. I've also> > in= cluded most of the CRT/ATL modules I think I need. I'm assuming that sinc= e> > it works for a couple calls that side of things should be fine. Is t= here a> > complete list of the modules which should be included? Is there= a DLL> > conflict with certain systems? I've used OSSPhone as a referenc= e project for> > deployment. I wouldn't have thought there would be a hug= e difference between> > XP Pro and XP Home. I've been running this softph= one on my dev box, but of> > course it may have many more of the librarie= s already installed because of> > the development enviroments. > >> > So = far I've tried:> >> > Completely updated the machine with Windows Update = (in case)> > Repaired .NET 2.0 > > Wrapping some exception handling code = in the softphone > >> > But no luck so far.> >> > The only other thing I = think may be causing this is not wrapping a Mutex> > around my MakeCall f= unction like OSS phone does. Perhaps too many events are> > being fired a= t the same time. (I'm totally guessing)> >> > Let me know if you have sug= gestions or find anything out!> > > >> > Whit> >> >> > -----Original Mes= sage-----> > From: ope...@li...> > [m= ailto:ope...@li...] On Behalf Of Ilia= n> > Jeri C. Pinzon> > Sent: Friday, August 10, 2007 2:20 AM> > To: opens= ips...@li...> > Subject: Re: [OpenSIPStack] ATLSIP= and ntdll.dll crashing> >> > Hi Whit,> >> > I'm on a XP Pro box today so= I can't reproduce this yet. How are you > > deploying your softphone to= XP Home? If it's via a VS Setup project, try > > packaging it with the a= ppropriate CRT and ATL merge modules (and the > > policies that come with= them).> >> > Regards,> > Ilian> >> > Whit Thiele wrote:> > > >> Hey Gu= ys,> >>> >> I was going to post this on the ATLSIP list, but it bounced b= ack to me.> >> (Maybe not working yet?)> >>> >>> >>> >> Anyway, I've been= using ATLSIP for some time now, with pretty good> >> > > success.> >= > >> I'm currently having a very bizarre issue. I've built a C# softph= one and> >> > > it> > > >> runs fine on XP Pro machines. However, w= hen it's installed on XP Home> >> > > boxes,> > > >> it sporadicall= y crashes, giving the windows Send/Don't Send big report.> >>> >> The mod= ule which is affected and causing the crash is "ntdll.dll" . The> >> soft= phone typically works for 2-3 calls, then crashes. Has anyone> >> experie= nced this? I've compiled ATLSIP from CVS yesterday. Any suggestions> >> o= n how to debug or even a possible solution for this would be great!> >>> = >>> >> Whit> >>> >>> >>> >>> >>> >> -------------------------------------= ------------------------------------> >> This SF.net email is sponsored b= y: Splunk Inc.> >> Still grepping through log files to find problems? St= op.> >> Now Search log events and configuration files using AJAX and a br= owser.> >> Download your FREE copy of Splunk now >> http://get.splunk.co= m/> >> _______________________________________________> >> opensipstack-d= evel mailing list> >> ope...@li...> >> https:= //lists.sourceforge.net/lists/listinfo/opensipstack-devel> >>> >>> >> >= >> > >> >> > -------------------------------------------------------= ------------------> > This SF.net email is sponsored by: Splunk Inc.> > S= till grepping through log files to find problems? Stop.> > Now Search lo= g events and configuration files using AJAX and a browser.> > Download yo= ur FREE copy of Splunk now >> http://get.splunk.com/> > ________________= _______________________________> > opensipstack-devel mailing list> > ope= nsi...@li...> > https://lists.sourceforge.net/li= sts/listinfo/opensipstack-devel> >> >> >> >> > --------------------------= -----------------------------------------------> > This SF.net email is s= ponsored by: Splunk Inc.> > Still grepping through log files to find prob= lems? Stop.> > Now Search log events and configuration files using AJAX = and a browser.> > Download your FREE copy of Splunk now >> http://get.sp= lunk.com/> > _______________________________________________> > opensipst= ack-devel mailing list> > ope...@li...> > htt= ps://lists.sourceforge.net/lists/listinfo/opensipstack-devel> >> >> > >= > > --------------------------------------------------------------------= -----> This SF.net email is sponsored by: Splunk Inc.> Still grepping thr= ough log files to find problems? Stop.> Now Search log events and config= uration files using AJAX and a browser.> Download your FREE copy of Splun= k now >> http://get.splunk.com/> _______________________________________= ________> opensipstack-devel mailing list> ope...@li...urc= eforge.net> https://lists.sourceforge.net/lists/listinfo/opensipstack-dev= el > _________________________________________________________________ > Besoin d'un e-mail ? Cr=E9ez gratuitement un compte Windows Live Hotmai= l et gagnez du temps avec l'interface =E0 la Outlook ! > http://www.windowslive.fr/hotmail/default.asp > -----------------------------------------------------------------------= -- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser.= > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > =20 |
From: Yacine A. <yac...@ms...> - 2007-08-13 09:09:23
|
Hello,I'm getting the same problem even with Windows XP Pro SP2 and=0A= for me it works well on two laptops running on both Home edition and=0A= Media center Edition.Is it possible that ATLSIP can have incompatibility wi= th processors?Because i tested it on 6 Celeron PCs and two P4 running Windo= ws XP PRO and it always crashing after some calls.> Date: Mon, 13 Aug 2007 = 10:38:56 +0800> From: ip...@so...> To: opensipstack-devel@lis= ts.sourceforge.net> Subject: Re: [OpenSIPStack] ATLSIP and ntdll.dll crash= ing> > Whit,> > Can I have a copy of your log (sip.log) after ATLSIP crashe= s?> > - Ilian> > Whit Thiele wrote:> > Ilian,> >> > I created a VS deployme= nt project very similar to the OSS phone. I've also> > included most of the= CRT/ATL modules I think I need. I'm assuming that since> > it works for a = couple calls that side of things should be fine. Is there a> > complete lis= t of the modules which should be included? Is there a DLL> > conflict with = certain systems? I've used OSSPhone as a reference project for> > deploymen= t. I wouldn't have thought there would be a huge difference between> > XP P= ro and XP Home. I've been running this softphone on my dev box, but of> > c= ourse it may have many more of the libraries already installed because of> = > the development enviroments. > >> > So far I've tried:> >> > Completely u= pdated the machine with Windows Update (in case)> > Repaired .NET 2.0 > > W= rapping some exception handling code in the softphone > >> > But no luck so= far.> >> > The only other thing I think may be causing this is not wrappin= g a Mutex> > around my MakeCall function like OSS phone does. Perhaps too m= any events are> > being fired at the same time. (I'm totally guessing)> >> = > Let me know if you have suggestions or find anything out!> > > >> > Whit= > >> >> > -----Original Message-----> > From: opensipstack-devel-bounces@li= sts.sourceforge.net> > [mailto:ope...@li...urceforge= .net] On Behalf Of Ilian> > Jeri C. Pinzon> > Sent: Friday, August 10, 2007= 2:20 AM> > To: ope...@li...> > Subject: Re: [O= penSIPStack] ATLSIP and ntdll.dll crashing> >> > Hi Whit,> >> > I'm on a XP= Pro box today so I can't reproduce this yet. How are you > > deploying yo= ur softphone to XP Home? If it's via a VS Setup project, try > > packaging = it with the appropriate CRT and ATL merge modules (and the > > policies tha= t come with them).> >> > Regards,> > Ilian> >> > Whit Thiele wrote:> > > = >> Hey Guys,> >>> >> I was going to post this on the ATLSIP list, but it bo= unced back to me.> >> (Maybe not working yet?)> >>> >>> >>> >> Anyway, I've= been using ATLSIP for some time now, with pretty good> >> > > success.= > > > >> I'm currently having a very bizarre issue. I've built a C# softp= hone and> >> > > it> > > >> runs fine on XP Pro machines. However, wh= en it's installed on XP Home> >> > > boxes,> > > >> it sporadically c= rashes, giving the windows Send/Don't Send big report.> >>> >> The module w= hich is affected and causing the crash is "ntdll.dll" . The> >> softphone t= ypically works for 2-3 calls, then crashes. Has anyone> >> experienced this= ? I've compiled ATLSIP from CVS yesterday. Any suggestions> >> on how to de= bug or even a possible solution for this would be great!> >>> >>> >> Whit> = >>> >>> >>> >>> >>> >> ----------------------------------------------------= ---------------------> >> This SF.net email is sponsored by: Splunk Inc.> >= > Still grepping through log files to find problems? Stop.> >> Now Search = log events and configuration files using AJAX and a browser.> >> Download y= our FREE copy of Splunk now >> http://get.splunk.com/> >> ________________= _______________________________> >> opensipstack-devel mailing list> >> ope= nsi...@li...> >> https://lists.sourceforge.net/lis= ts/listinfo/opensipstack-devel> >>> >>> >> > >> > >> >> > -----------= --------------------------------------------------------------> > This SF.n= et email is sponsored by: Splunk Inc.> > Still grepping through log files t= o find problems? Stop.> > Now Search log events and configuration files us= ing AJAX and a browser.> > Download your FREE copy of Splunk now >> http:/= /get.splunk.com/> > _______________________________________________> > open= sipstack-devel mailing list> > ope...@li...> > = https://lists.sourceforge.net/lists/listinfo/opensipstack-devel> >> >> >> >= > > -----------------------------------------------------------------------= --> > This SF.net email is sponsored by: Splunk Inc.> > Still grepping thro= ugh log files to find problems? Stop.> > Now Search log events and configu= ration files using AJAX and a browser.> > Download your FREE copy of Splunk= now >> http://get.splunk.com/> > ________________________________________= _______> > opensipstack-devel mailing list> > ope...@li...ur= ceforge.net> > https://lists.sourceforge.net/lists/listinfo/opensipstack-de= vel> >> >> > > > > ------------------------------------------------------= -------------------> This SF.net email is sponsored by: Splunk Inc.> Still = grepping through log files to find problems? Stop.> Now Search log events = and configuration files using AJAX and a browser.> Download your FREE copy = of Splunk now >> http://get.splunk.com/> _________________________________= ______________> opensipstack-devel mailing list> opensipstack-devel@lists.s= ourceforge.net> https://lists.sourceforge.net/lists/listinfo/opensipstack-d= evel _________________________________________________________________ Besoin d'un e-mail ? Cr=E9ez gratuitement un compte Windows Live Hotmail et= gagnez du temps avec l'interface =E0 la Outlook ! http://www.windowslive.fr/hotmail/default.asp= |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 09:02:17
|
you can get the latest code from CVS. the instructions are in http://www.opensipstack.org/cvs.html. then download the atlsip project. bart wrote: > have done exactly as you say with no luck. Where did you get your source. I downloaded from the website. > > I will download again, maintain directory structure and try again. That sample is great (only if i could get that working). > > Please escuse me as I cry.................... > > I despair, I despair. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-13 08:56:29
|
have done exactly as you say with no luck. Where did you get your source. I downloaded from the website. I will download again, maintain directory structure and try again. That sample is great (only if i could get that working). Please escuse me as I cry.................... I despair, I despair. |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 06:57:38
|
hi, *THERE IS* a reference MFC app which does not link to atlsip.dll. It's under *vc80-mfc*. Also since you're using "Multithread Debug", be sure to "Use MFC in a Static library" and remove *libcmtd.lib* from Linker->Input->Ignore Specific Library (i.e. /NODEFAULTLIB:). This works fine for me. - Ilian bart wrote: > I modified as you suggested - that made no difference. Yes, I have seen the ossphone but it is a Windows Forms.net application linking to atlsip.dll. Mine is a pure link to SF::SoftPhoneInterface. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-13 06:24:32
|
I modified as you suggested - that made no difference. Yes, I have seen the ossphone but it is a Windows Forms.net application linking to atlsip.dll. Mine is a pure link to SF::SoftPhoneInterface. |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 05:20:43
|
bart, Before you send out anything, have you seen the reference MFC app? It's available in atlsip\ossphone\vc80-mfc\. Also you may have to add the following lines in your app header file (i.e. the OpenSIPStack Start - End block): class COSSPhoneMFCApp : public CWinApp { public: /**** OpenSIPStack Start ****/ class PWLibProcess : public PProcess { PCLASSINFO(PWLibProcess, PProcess); void Main() { } } pwlibProcess; /**** OpenSIPStack End ****/ COSSPhoneMFCApp(); // Overrides public: virtual BOOL InitInstance(); // Implementation DECLARE_MESSAGE_MAP() }; If this doesn't work, update me on this thread and I'll see what I can do... - Ilian bart wrote: > Steps to reproduce the problem. > 1. Create a dialog only mfc aplication. No special options > 2. In dialog header file - #include "SoftPhoneInterface.h" > 3. In dialog header file - SF::SoftPhoneInterface sf; > 4. link with library. > > ps - can i send my folder to someone ( i promise to compress :-) ) > > Both Library and my softphone attempt set to Multi-threaded Debug (/MTd) > > Compiler Options: > /Od /I "C:\voip\osSphn\include" /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "_MBCS" /Gm /EHsc /RTC1 /MTd /Yu"stdafx.h" /Fp"Debug\osSphn.pch" /Fo"Debug\\" /Fd"Debug\vc80.pdb" /W3 /nologo /c /Wp64 /ZI /TP /errorReport:prompt > > > Linker Options: > /OUT:"C:\voip\osSphn\Debug\osSphn.exe" /INCREMENTAL /NOLOGO /LIBPATH:"C:\voip\osSphn\lib" /MANIFEST /MANIFESTFILE:"Debug\osSphn.exe.intermediate.manifest" /NODEFAULTLIB:"libc.lib libcmtd.lib MSVCRTD" /DELAYLOAD:"OleAcc.dll" /DEBUG /PDB:"c:\voip\osSphn\debug\osSphn.pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT opensipstackd.lib DelayImp.lib > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-13 04:57:35
|
Steps to reproduce the problem. 1. Create a dialog only mfc aplication. No special options 2. In dialog header file - #include "SoftPhoneInterface.h" 3. In dialog header file - SF::SoftPhoneInterface sf; 4. link with library. ps - can i send my folder to someone ( i promise to compress :-) ) Both Library and my softphone attempt set to Multi-threaded Debug (/MTd) Compiler Options: /Od /I "C:\voip\osSphn\include" /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "_MBCS" /Gm /EHsc /RTC1 /MTd /Yu"stdafx.h" /Fp"Debug\osSphn.pch" /Fo"Debug\\" /Fd"Debug\vc80.pdb" /W3 /nologo /c /Wp64 /ZI /TP /errorReport:prompt Linker Options: /OUT:"C:\voip\osSphn\Debug\osSphn.exe" /INCREMENTAL /NOLOGO /LIBPATH:"C:\voip\osSphn\lib" /MANIFEST /MANIFESTFILE:"Debug\osSphn.exe.intermediate.manifest" /NODEFAULTLIB:"libc.lib libcmtd.lib MSVCRTD" /DELAYLOAD:"OleAcc.dll" /DEBUG /PDB:"c:\voip\osSphn\debug\osSphn.pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT opensipstackd.lib DelayImp.lib |
From: Andre S. <eds...@ya...> - 2007-08-13 03:02:37
|
Ilian, Is the Call transfer available? --------------------------------- Need a vacation? Get great deals to amazing places on Yahoo! Travel. |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 02:38:55
|
Whit, Can I have a copy of your log (sip.log) after ATLSIP crashes? - Ilian Whit Thiele wrote: > Ilian, > > I created a VS deployment project very similar to the OSS phone. I've also > included most of the CRT/ATL modules I think I need. I'm assuming that since > it works for a couple calls that side of things should be fine. Is there a > complete list of the modules which should be included? Is there a DLL > conflict with certain systems? I've used OSSPhone as a reference project for > deployment. I wouldn't have thought there would be a huge difference between > XP Pro and XP Home. I've been running this softphone on my dev box, but of > course it may have many more of the libraries already installed because of > the development enviroments. > > So far I've tried: > > Completely updated the machine with Windows Update (in case) > Repaired .NET 2.0 > Wrapping some exception handling code in the softphone > > But no luck so far. > > The only other thing I think may be causing this is not wrapping a Mutex > around my MakeCall function like OSS phone does. Perhaps too many events are > being fired at the same time. (I'm totally guessing) > > Let me know if you have suggestions or find anything out! > > > Whit > > > -----Original Message----- > From: ope...@li... > [mailto:ope...@li...] On Behalf Of Ilian > Jeri C. Pinzon > Sent: Friday, August 10, 2007 2:20 AM > To: ope...@li... > Subject: Re: [OpenSIPStack] ATLSIP and ntdll.dll crashing > > Hi Whit, > > I'm on a XP Pro box today so I can't reproduce this yet. How are you > deploying your softphone to XP Home? If it's via a VS Setup project, try > packaging it with the appropriate CRT and ATL merge modules (and the > policies that come with them). > > Regards, > Ilian > > Whit Thiele wrote: > >> Hey Guys, >> >> I was going to post this on the ATLSIP list, but it bounced back to me. >> (Maybe not working yet?) >> >> >> >> Anyway, I've been using ATLSIP for some time now, with pretty good >> > success. > >> I'm currently having a very bizarre issue. I've built a C# softphone and >> > it > >> runs fine on XP Pro machines. However, when it's installed on XP Home >> > boxes, > >> it sporadically crashes, giving the windows Send/Don't Send big report. >> >> The module which is affected and causing the crash is "ntdll.dll" . The >> softphone typically works for 2-3 calls, then crashes. Has anyone >> experienced this? I've compiled ATLSIP from CVS yesterday. Any suggestions >> on how to debug or even a possible solution for this would be great! >> >> >> Whit >> >> >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Ilian J. C. P. <ip...@so...> - 2007-08-13 02:11:41
|
Hi, Also make sure that OpenSIPStack and your softphone project have the same Runtime Library setting (Project Properties -> Configuration properties -> C++ -> Code Generation -> Runtime Library). If you're using "Multi-threaded" for your softphone, OpenSIPStack's should be set likewise. - Ilian bart wrote: > I spotted that when i examined atlsip linker settings. When i tried that, all that happened was that - all errors were converted to warnings and the finished application wouldnt run :-( > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: bart <ope...@op...> - 2007-08-10 20:21:24
|
I spotted that when i examined atlsip linker settings. When i tried that, all that happened was that - all errors were converted to warnings and the finished application wouldnt run :-( |
From: Whit T. <de...@wh...> - 2007-08-10 13:45:32
|
Ilian, I created a VS deployment project very similar to the OSS phone. I've also included most of the CRT/ATL modules I think I need. I'm assuming that since it works for a couple calls that side of things should be fine. Is there a complete list of the modules which should be included? Is there a DLL conflict with certain systems? I've used OSSPhone as a reference project for deployment. I wouldn't have thought there would be a huge difference between XP Pro and XP Home. I've been running this softphone on my dev box, but of course it may have many more of the libraries already installed because of the development enviroments. So far I've tried: Completely updated the machine with Windows Update (in case) Repaired .NET 2.0 Wrapping some exception handling code in the softphone But no luck so far. The only other thing I think may be causing this is not wrapping a Mutex around my MakeCall function like OSS phone does. Perhaps too many events are being fired at the same time. (I'm totally guessing) Let me know if you have suggestions or find anything out! Whit -----Original Message----- From: ope...@li... [mailto:ope...@li...] On Behalf Of Ilian Jeri C. Pinzon Sent: Friday, August 10, 2007 2:20 AM To: ope...@li... Subject: Re: [OpenSIPStack] ATLSIP and ntdll.dll crashing Hi Whit, I'm on a XP Pro box today so I can't reproduce this yet. How are you deploying your softphone to XP Home? If it's via a VS Setup project, try packaging it with the appropriate CRT and ATL merge modules (and the policies that come with them). Regards, Ilian Whit Thiele wrote: > Hey Guys, > > I was going to post this on the ATLSIP list, but it bounced back to me. > (Maybe not working yet?) > > > > Anyway, I've been using ATLSIP for some time now, with pretty good success. > I'm currently having a very bizarre issue. I've built a C# softphone and it > runs fine on XP Pro machines. However, when it's installed on XP Home boxes, > it sporadically crashes, giving the windows Send/Don't Send big report. > > The module which is affected and causing the crash is "ntdll.dll" . The > softphone typically works for 2-3 calls, then crashes. Has anyone > experienced this? I've compiled ATLSIP from CVS yesterday. Any suggestions > on how to debug or even a possible solution for this would be great! > > > Whit > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Joegen E. B. <joe...@gm...> - 2007-08-10 13:38:26
|
Try /FORCE:MULTIPLE switch in the linker flags bart wrote: > I am trying to create a softphone. First I tried with MFC, imported SoftPhoneInterface.h and added opensipstackd.lib as an additional library. Had too many errors (over 500). > > I then tried a WTL application with same result. I can seem to configure the linker to ignore the relevant libraries. > > I am using VS2005. This is the linker command line from the project property pages(for the WTL attempt): > > /OUT:"Debug\osShpnWtl.exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTFILE:"Debug\osShpnWtl.exe.intermediate.manifest" /NODEFAULTLIB:"libc.lib" /DEBUG /PDB:"c:\voip\osShpnWtl\osShpnWtl\Debug\osShpnWtl.pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT C:\voip\osShpnWtl\lib\opensipstackd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib > > Below is a very short snip of the kind of error I get: - > > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: virtual __thiscall std::basic_ios<char,struct std::char_traits<char> >::~basic_ios<char,struct std::char_traits<char> >(void)" (??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: char const * __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: void __thiscall std::basic_ios<char,struct std::char_traits<char> >::setstate(int,bool)" (?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static bool __cdecl std::char_traits<char>::eq_int_type(int const &,int const &)" (?eq_int_type@?$char_traits@D@std@@SA_NABH0@Z) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static int __cdecl std::char_traits<char>::eof(void)" (?eof@?$char_traits@D@std@@SAHXZ) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static unsigned int __cdecl std::char_traits<char>::length(char const *)" (?length@?$char_traits@D@std@@SAIPBD@Z) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::_Lockit::~_Lockit(void)" (??1_Lockit@std@@QAE@XZ) already defined in libcpmtd.lib(xlock.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::_Lockit::_Lockit(int)" (??0_Lockit@std@@QAE@H@Z) already defined in libcpmtd.lib(xlock.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "void __cdecl std::_Debug_message(unsigned short const *,unsigned short const *,unsigned int)" (?_Debug_message@std@@YAXPBG0I@Z) already defined in libcpmtd.lib(stdthrow.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: virtual __thiscall std::basic_ostream<char,struct std::char_traits<char> >::~basic_ostream<char,struct std::char_traits<char> >(void)" (??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::basic_ostream<char,struct std::char_traits<char> >(class std::basic_streambuf<char,struct std::char_traits<char> > *,bool)" (??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z) already defined in libcpmtd.lib(cerr.obj) > 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "protected: __thiscall std::basic_ios<char,struct std::char_traits<char> >::basic_ios<char,struct std::char_traits<char> >(void)" (??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ) already defined in libcpmtd.lib(cerr.obj) > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: bart <ope...@op...> - 2007-08-10 13:06:46
|
I am trying to create a softphone. First I tried with MFC, imported SoftPhoneInterface.h and added opensipstackd.lib as an additional library. Had too many errors (over 500). I then tried a WTL application with same result. I can seem to configure the linker to ignore the relevant libraries. I am using VS2005. This is the linker command line from the project property pages(for the WTL attempt): /OUT:"Debug\osShpnWtl.exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTFILE:"Debug\osShpnWtl.exe.intermediate.manifest" /NODEFAULTLIB:"libc.lib" /DEBUG /PDB:"c:\voip\osShpnWtl\osShpnWtl\Debug\osShpnWtl.pdb" /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT C:\voip\osShpnWtl\lib\opensipstackd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Below is a very short snip of the kind of error I get: - 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: virtual __thiscall std::basic_ios<char,struct std::char_traits<char> >::~basic_ios<char,struct std::char_traits<char> >(void)" (??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@ABV01@@Z) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: char const * __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEPBDXZ) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: void __thiscall std::basic_ios<char,struct std::char_traits<char> >::setstate(int,bool)" (?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static bool __cdecl std::char_traits<char>::eq_int_type(int const &,int const &)" (?eq_int_type@?$char_traits@D@std@@SA_NABH0@Z) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static int __cdecl std::char_traits<char>::eof(void)" (?eof@?$char_traits@D@std@@SAHXZ) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: static unsigned int __cdecl std::char_traits<char>::length(char const *)" (?length@?$char_traits@D@std@@SAIPBD@Z) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::_Lockit::~_Lockit(void)" (??1_Lockit@std@@QAE@XZ) already defined in libcpmtd.lib(xlock.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::_Lockit::_Lockit(int)" (??0_Lockit@std@@QAE@H@Z) already defined in libcpmtd.lib(xlock.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "void __cdecl std::_Debug_message(unsigned short const *,unsigned short const *,unsigned int)" (?_Debug_message@std@@YAXPBG0I@Z) already defined in libcpmtd.lib(stdthrow.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: virtual __thiscall std::basic_ostream<char,struct std::char_traits<char> >::~basic_ostream<char,struct std::char_traits<char> >(void)" (??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::basic_ostream<char,struct std::char_traits<char> >(class std::basic_streambuf<char,struct std::char_traits<char> > *,bool)" (??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z) already defined in libcpmtd.lib(cerr.obj) 1>msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "protected: __thiscall std::basic_ios<char,struct std::char_traits<char> >::basic_ios<char,struct std::char_traits<char> >(void)" (??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ) already defined in libcpmtd.lib(cerr.obj) |