similar to: chan_sip.c: Failed to parse contact info

Displaying 20 results from an estimated 110 matches similar to: "chan_sip.c: Failed to parse contact info"

2010 Dec 25
1
asterisk realtime & calling sip users
Hello We have recently upgraded to Realtime engine (sip buddies and extensions) and now have problems with calling local SIP users. I have rtcachefriends=yes but tried with 'no' and it's even worse. (asterisk 1.8.1.1 + realtime mysql) Here's an example: User 1000 registers successfully and can then be called with Dial(SIP/1000,30) successfully After some time when I try to call
2010 Dec 24
5
SRTP unprotect: authentication failure
Hello! Ater several successful SRTP-enabled calls with SRTP set to Mandatory, asterisk starts to give the following warnings in Log: WARNING[13714] res_srtp.c: SRTP unprotect: authentication failure (continiously) and client hears no sound. After i restart the client program it works fine again for a while. Then the same warning again. Asterisk 1.8.1.1, RealTime engine, sip peer has
2011 Mar 10
1
[1.8] Unable to Register: Registration denied because of contact ACL
Hello All, Some new security stuff is going on I suppose in 1.8 that I am not familiar with and would appreciate your help In a scenario such as the following: Internet --> SBC --> Asterisk upon trying to register an endpoint, the following is being observed on the Asterisk Console. Have Googled this but haven't come up with anything that helped much. [Mar 10 11:53:59] ERROR[21272]:
2011 May 09
2
[LLVMdev] <badref> showed up when duplicating a list of dependent instructions
I collected a sequence of LLVM instructions, want to make a copy of each and insert them into a PREVIOUS location inside the same function (all globals and locals are properly declared before the PREVIOUS location). Here is the list of instructions I want to duplicate and insert: 0 %90 = load i32* @strstart, align 4 1 %91 = add i32 %90, 2 2 %88 = load i32* @ins_h, align 4 3 %92 =
2011 May 09
0
[LLVMdev] <badref> showed up when duplicating a list of dependent instructions
Hi Chuck, > std::vector<Instruction *>::iterator p; > Instruction * pi = PREVIOUS_POSITION; > BasicBlock * pb = PREVIOUS_POSITION->getParent(); > > for(p = coll.begin(); p != coll.end(); ++p){ > Instruction * CurI = * p; > Instruction * CloneI = CurI->clone(); clone doesn't know have any magical way of knowing that it should update the instruction's
2016 Mar 29
3
Asterisk 11.22.0 Now Available
The Asterisk Development Team has announced the release of Asterisk 11.22.0. This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk The release of Asterisk 11.22.0 resolves several issues reported by the community and would have not been possible without your participation. Thank you! The following are the issues resolved in this release: Bugs
2006 Aug 01
1
What's a labelled data.frame? And how do I work with it?
I imported an SPSS file with its data labels using spss.get (Library(Hmisc). Class = data.frame I then updated some of the spss labels and added a label to the object itself. label (staff.allocation) <- "raw data from the spss file" I then save it as an R object. When I load the object for further work it comes in as Class = "labelled" "data.frame" Then I
2012 Aug 13
1
Websockets on Asterisk 11 and SipML5
Hello, I'm trying to register a user using sipml5 on Asterisk 11. I followed the instructions here: http://thr3ads.net/asterisk-users/2012/08/1972342-Asterisk-Websockets I added transport=ws to my sip.conf file: [3002] username=3002 secret=XXXXXXXXX host=dynamic type=friend context=test disallow=all allow=g729 ;allow=all ; Allow codecs in order of preference allow=ilbc
2006 Nov 13
1
Identifying free pages in guest VM
Hi While performing migration of a guest virtual machine from a physical node to another, it would be nice if we can figure out the free pages in the guest VM and opt not to transfer them. 1.I came across in the paper "Xen and the Art of Virtualization", that guest VM can be made to give the free pages back to Xen before doing migration. 2.What is the way to figure out free pages in
2011 Aug 22
0
netsock error? some sip clients crashing!
Hello I have a weird behaviour with our local GSM (3G) provider -- several SIP clients crash on the android phone, when switching to 3G network, and in asterisks logs it looks like this - client registers on server successfull and then crashesh immediately. Here's suspicious part of asterisk log: [2011-08-22 19:38:12] ERROR[28605]: netsock2.c:263 ast_sockaddr_resolve:
2016 Mar 29
5
Asterisk 13.8.0 Now Available
The Asterisk Development Team has announced the release of Asterisk 13.8.0. This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk The release of Asterisk 13.8.0 resolves several issues reported by the community and would have not been possible without your participation. Thank you! The following are the issues resolved in this release: New
2004 Apr 29
1
I'm trying to use package ts (decompose). How do you set up the data/ See attached. thanks
InDATA <-read.table("C:/Data/May 2004/season.txt",header=T) X <- decompose(InDATA) print(X) Period Connections Q1 67519 Q2 69713 Q3 68920 Q4 69452 Q1 70015 Q2 59273 Q3 57063 Q4 65596 Q1 73527 Q2 58586 Q3 69522 Q4 60091 Q1 51686 Q2 63490 Q3 55702 Q4 53200 Q1 51033 Q2 48175 Q3 52709 Q4 50106 Q1 50855 Q2 43466 Q3 48190 Q4 41702 Q1 48747 Q2 51441 Q3 42537
2016 Mar 29
0
Asterisk 11.22.0 Now Available
The Asterisk Development Team has announced the release of Asterisk 11.22.0. This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk The release of Asterisk 11.22.0 resolves several issues reported by the community and would have not been possible without your participation. Thank you! The following are the issues resolved in this release: Bugs
2011 May 05
0
[LLVMdev] identifying all dependent instructions through multi-levels of def-use relationship
Dear Chuck, I haven't read all of the details, but it seems that what you need to do is to clone defs before you clone any uses of the def. To do that, you want to iterate over the instructions in dominator-tree order. To do that, you first construct the dominator tree (there is an LLVM analysis pass that does that). Then, you iterate over the basic blocks in the dominator tree from
2005 Aug 31
2
R CMD check example problem (PR#8113)
[Automatic forwarding from R-bugs failed. This message has been manually forwarded.] Hi all! I'm trying to add Thomas Lumley's defmacro() function Lumley T. "Programmer's Niche: Macros in {R}", R News, 2001, Vol 1, No. 3, pp 11--13, \url{http://CRAN.R-project.org/doc/Rnews/} to the gtools package (provided that Thomas gives his OK). And I've encountered an error in
2011 May 04
2
[LLVMdev] identifying all dependent instructions through multi-levels of def-use relationship
While working on my optimization pass (a Function Pass), I try to replicate a call instruction and insert it at some earlier location (similar to LICM). However, the instruction I am trying to replicate has dependencies on an uncertain number of instructions that are used to generate an address. A simple example (IR segment): define void @foo() nounwind { entry: %a = alloca i32, align 4;
2011 Nov 26
1
Why it is happeing?
Dear all, I had following calculations with R: > x = vector(length = 4) > x[1] = 1 > x[2] = 3 > x[3] = 123456789123456 > x[4] = -9876543219876 > as.integer(x) [1] 1 3 NA NA Warning message: NAs introduced by coercion What went wrong? Thanks and regards,
2016 Mar 29
0
Asterisk 13.8.0 Now Available
The Asterisk Development Team has announced the release of Asterisk 13.8.0. This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk The release of Asterisk 13.8.0 resolves several issues reported by the community and would have not been possible without your participation. Thank you! The following are the issues resolved in this release: New
2015 Jan 23
0
Wine release 1.7.35
The Wine development release 1.7.35 is now available. What's new in this release (see below for details): - Beginnings of support for OpenGL core contexts. - Initial support for glyph placement in DirectWrite. - Some more WBEM objects. - Various bug fixes. The source is available from the following locations: http://prdownloads.sourceforge.net/wine/wine-1.7.35.tar.bz2
2011 Mar 09
3
Asked to transmit frame type slin, while native formats is 0x8 (alaw) read/write = 0x4 (ulaw)/0x8 (alaw)
Hello! Client is using ulaw, however server sometimes fills the log with following: [2011-03-09 21:23:07] WARNING[27204] chan_sip.c: Asked to transmit frame type slin, while native formats is 0x8 (alaw) read/write = 0x4 (ulaw)/0x8 (alaw) [2011-03-09 21:23:07] WARNING[27204] chan_sip.c: Asked to transmit frame type slin, while native formats is 0x8 (alaw) read/write = 0x4 (ulaw)/0x8 (alaw)