You can subscribe to this list here.
2003 |
Jan
|
Feb
(3) |
Mar
(16) |
Apr
(11) |
May
(3) |
Jun
(109) |
Jul
(70) |
Aug
(22) |
Sep
(19) |
Oct
(4) |
Nov
(25) |
Dec
(46) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(68) |
Feb
(52) |
Mar
(54) |
Apr
(57) |
May
(13) |
Jun
(15) |
Jul
(16) |
Aug
(3) |
Sep
(43) |
Oct
(95) |
Nov
(106) |
Dec
(142) |
2005 |
Jan
(62) |
Feb
(190) |
Mar
(75) |
Apr
(117) |
May
(123) |
Jun
(64) |
Jul
(122) |
Aug
(95) |
Sep
(63) |
Oct
(102) |
Nov
(99) |
Dec
(85) |
2006 |
Jan
(59) |
Feb
(64) |
Mar
(138) |
Apr
(82) |
May
(62) |
Jun
(62) |
Jul
(72) |
Aug
(50) |
Sep
(21) |
Oct
(95) |
Nov
(95) |
Dec
(29) |
2007 |
Jan
(26) |
Feb
(36) |
Mar
(45) |
Apr
(12) |
May
(53) |
Jun
(38) |
Jul
(19) |
Aug
(87) |
Sep
(63) |
Oct
(272) |
Nov
(102) |
Dec
(63) |
2008 |
Jan
(54) |
Feb
(19) |
Mar
(84) |
Apr
(111) |
May
(17) |
Jun
(26) |
Jul
(18) |
Aug
(10) |
Sep
(14) |
Oct
(9) |
Nov
(4) |
Dec
(12) |
2009 |
Jan
(5) |
Feb
(7) |
Mar
(4) |
Apr
(8) |
May
(4) |
Jun
(7) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(6) |
Mar
(6) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(3) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Alex E. <aep...@ya...> - 2004-09-08 02:58:50
|
Steve, Thanks so much for the information, it is great to get a response so quickly. I guess I would have to decide whether to stay on the common path or spend some time messing with VC++. I wonder if there is enough interest in that, or I would be doing it just for myself. Best, Alex > -----Original Message----- > From: iax...@li... > [mailto:iax...@li...]On Behalf Of Steve > Kann > Sent: Tuesday, September 07, 2004 7:17 PM > To: Alex Epshteyn > Cc: Iaxclientlist > Subject: Re: [Iaxclient-devel] Compiling iaxclient with VC++ as a > windows dll > > > > On Sep 7, 2004, at 10:01 PM, Alex Epshteyn wrote: > > > I am new to this list and trying to get up to speed. > > > > It appears that the project uses gcc (MinGV and Cygwin) to build the > > library, compiling library's wrapper wiax.dll (in diax project) is > > also done > > with gcc. > > I have seen a few questions about compiling with VC++, but not too many > > answers, and it is not obvious what has changed since these posts. > > > > Are the Microsoft VC++ project files out of date? > > Yes. > > > I would like to build a > > dll using VC++, and wonder if that would be a relatively major > > effort? > > Probably not. > > > Can > > the library be compiled with VC++ without any patches? > > No; there's a couple of gcc-specific features that are used in the > library. I went through and cleaned most of these up, and AFAIK the > only issue left is that we use a zero-length array as the last member > of a structure; in gcc, this refers to the memory _after_ the end of > the structure, and was a neat hack that Mark did in libiax2. > > Unfortunately, nobody has come up with a similar construction that _is_ > portable to compilers which don't support this (simple) extension. > > A proper fix for this would be something which is equally efficient, > and portable, and would be accepted back into digium's libiax2 > repository. > > I don't use VC++ at all -- I don't really use Windows that much, but > when I do, I use gcc there. Since my use of iaxclient is for a > portable project, it's just a lot easier to maintain the single > Makefile, and use the same toolchain on every platform. > > > -SteveK > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: Steve K. <st...@st...> - 2004-09-08 02:17:31
|
On Sep 7, 2004, at 10:01 PM, Alex Epshteyn wrote: > I am new to this list and trying to get up to speed. > > It appears that the project uses gcc (MinGV and Cygwin) to build the > library, compiling library's wrapper wiax.dll (in diax project) is > also done > with gcc. > I have seen a few questions about compiling with VC++, but not too many > answers, and it is not obvious what has changed since these posts. > > Are the Microsoft VC++ project files out of date? Yes. > I would like to build a > dll using VC++, and wonder if that would be a relatively major > effort? Probably not. > Can > the library be compiled with VC++ without any patches? No; there's a couple of gcc-specific features that are used in the library. I went through and cleaned most of these up, and AFAIK the only issue left is that we use a zero-length array as the last member of a structure; in gcc, this refers to the memory _after_ the end of the structure, and was a neat hack that Mark did in libiax2. Unfortunately, nobody has come up with a similar construction that _is_ portable to compilers which don't support this (simple) extension. A proper fix for this would be something which is equally efficient, and portable, and would be accepted back into digium's libiax2 repository. I don't use VC++ at all -- I don't really use Windows that much, but when I do, I use gcc there. Since my use of iaxclient is for a portable project, it's just a lot easier to maintain the single Makefile, and use the same toolchain on every platform. -SteveK |
From: Alex E. <aep...@ya...> - 2004-09-08 02:01:43
|
I am new to this list and trying to get up to speed. It appears that the project uses gcc (MinGV and Cygwin) to build the library, compiling library's wrapper wiax.dll (in diax project) is also done with gcc. I have seen a few questions about compiling with VC++, but not too many answers, and it is not obvious what has changed since these posts. Are the Microsoft VC++ project files out of date? I would like to build a dll using VC++, and wonder if that would be a relatively major effort? Can the library be compiled with VC++ without any patches? Thanks, Alex |
From: Steve K. <st...@st...> - 2004-09-07 13:20:02
|
Lim Han Shyong wrote: > Dear All: > > I had compile the library with VC and try to make call last few > months ago. All work nicely.. > But lately i found out if i apply the echo filter, the testcall > program crash. So, any idea with it..? Presently, neither compiling with VC, nor echo cancellation are working. -SteveK |
From: Lim H. S. <li...@in...> - 2004-09-07 10:09:10
|
Dear All: I had compile the library with VC and try to make call last few mon= ths ago. All work nicely.. But lately i found out if i apply the echo filter, the testcall program crash. So, any idea with it..? Regards HS inovas telecommunications sdn bhd Unit 516, Block E, Phileo Damansara 1, No.9, Jalan 16/11, Off Jalan Damansara, 46350 Petaling Jaya, Selangor D.E. =C3=B8 Tel: +603 7626 3000 ext 213 =C3=B8 Fax: +603 7626 3023 =C3=B8 E-mail: ema...@in... =C3=B8 Website: www.inovas.com |
From: Dennis W. <den...@ya...> - 2004-09-07 06:50:37
|
I have tried with the latest CVS tarball and have even tried updating direct from CVS with Tortoise all with no luck. Does anyone have a VC build for IAX2 that can be downloaded?? Appreciate the replies... =) Thanks, /Dennis ===== Dennis White Telefonik - "Unleashing Powers of Technology" http://www.telefonik.com |
From: Steven P. D. <st...@do...> - 2004-08-28 16:10:18
|
I cross compiled the iaxclient library and testcall application to the ARM Zaurus SL6000 PDA platform (linux). The application runs, I see the IAX call progress work successfully on my Asterisk PBX, but no sound. I cross compiled a simple application that listens on /dev/dsp for input and then replays that input back to /dev/dsp - it works just dandy - so I know the /dev/dsp is fully functional. After trying testcall the /dev/dsp stops functioning - ie I exit testcall (which does not shut down properly on a 'q' BTW) and exit the shell and no longer get sound for pen clicks etc. So whatever iaxclient libraries are doing with /dev/dsp seems to fubar it until the PDA is rebooted. Has anyone seen such activity? Any known solutions/workarounds? It would be nice to have IAX phone capability from the PDA. TIA |
From: Ilguiz L. <ila...@in...> - 2004-08-18 17:01:18
|
On Wed, Aug 18, 2004 at 04:46:44PM +0100, Richard Pettitt wrote: > Can anyone help me configure my asterisk server: > I have gotten my Iaxphone to register with the server, but every time I try > to make a call > I get a ?Call Rejected By Remote? message. One can look at the astersik debug messages by connecting to it with "asterisk -r" and entering "iax2 debug" ("help iax2" for more). The client's debug messages can be enabled by uncommenting the respective CFLAGS line in lib/Makefile, CFLAGS:= $(CFLAGS) -Ilibiax2/src -DIAXC_IAX2 -DLIBIAX -DDEBUG_SUPPORT One possible reason for rejection is incompatibility in codecs. Currently, only GSM codec is implemented in libiaxclient. Another reason could be an authentication failure. It seems that the IAX2 channel for incoming connections can have a user name and password separate from those required for outgoing calls. -- Ilguiz Latypov tel. +1 (519) 569-8746 66 Wildlark Crescent Kitchener, Ontario N2N 3E9 |
From: Richard P. <ric...@co...> - 2004-08-18 15:47:50
|
Hello, Can anyone help me configure my asterisk server: I have gotten my Iaxphone to register with the server, but every time I try to make a call I get a Call Rejected By Remote message. Thanks |
From: Rob J. <ju...@ob...> - 2004-07-23 17:02:49
|
Hi, Will someone PLEASE fix that missing cast in iaxclient_lib.c line 536 so that it doesn't throw an error in MSVC 6.0? Thanks, Rob |
From: Rob J. <ju...@ob...> - 2004-07-23 16:58:57
|
> Faizan Naqvi wrote: > > Download this version > http://shell3.thebestisp.com/~tili/iaxclient.zip > Try out WinIAX for VC example. > Contact me if you need more help > > ----- Original Message ----- > From: Saad Farooq > To: iax...@li... > Sent: Tuesday, June 01, 2004 3:27 PM > Subject: [Iaxclient-devel] how do use the lib file generated > by IAXcomm project? > > how do use the lib file generated by IAXcomm project so that > i can use it in my Microsoft Visual C++ project? Any ideas > guys? I read in the archive that we can generate a dll > instead of the lib can you guys guide me how i should go > about this. I need to develop applications for the windows > platform and i need to use both VC++ as well as Visual > Basic. Any help regarding this will be greatly appreciated. > > ------------------------------------------------------------ > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger |
From: Steve K. <st...@st...> - 2004-07-23 13:50:42
|
Marcelo Pacheco wrote: >In the following setup: > >Box1 > >Iaxcomm -> Asterisk > > >Box 2 > >Asterisk -> FXS, FXO (don't think the end connection matters on this side) > >Trunking on between asterisks, trunking off between asterisk and iaxcomm, iax >transfer off. > >On a call between iaxcomm and either the FXS or FXO on the other side, I see >with tcpdump that trunked packets are being sent from asterisk on box 1 and >iaxcomm, causing iaxcomm to garble the sound (can barely understand), using >GSM. > >Is the bug on asterisk for sending trunked packets over a non-trunked >connection, or on iaxcomm for not handling a packet with multiple GSM packets >together ? > > It sounds like a bug in asterisk, unless Mark has changed the iax2 protocol in some way. Presently, iaxclient (and libiax2) don't know anything about trunking, so if trunked packets are getting there, it should be a bug on the other side. >Once I knew where the problem should be fixed, perhaps I could fix it. > >Thanks, > >Marcelo Pacheco > > >------------------------------------------------------- >This SF.Net email is sponsored by BEA Weblogic Workshop >FREE Java Enterprise J2EE developer tools! >Get your free copy of BEA WebLogic Workshop 8.1 today. >http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > |
From: Marcelo P. <ma...@ma...> - 2004-07-23 12:50:31
|
In the following setup: Box1 Iaxcomm -> Asterisk Box 2 Asterisk -> FXS, FXO (don't think the end connection matters on this side) Trunking on between asterisks, trunking off between asterisk and iaxcomm, iax transfer off. On a call between iaxcomm and either the FXS or FXO on the other side, I see with tcpdump that trunked packets are being sent from asterisk on box 1 and iaxcomm, causing iaxcomm to garble the sound (can barely understand), using GSM. Is the bug on asterisk for sending trunked packets over a non-trunked connection, or on iaxcomm for not handling a packet with multiple GSM packets together ? Once I knew where the problem should be fixed, perhaps I could fix it. Thanks, Marcelo Pacheco |
From: Faizan N. <fai...@vo...> - 2004-07-23 09:38:59
|
Download this version http://shell3.thebestisp.com/~tili/iaxclient.zip Try out WinIAX for VC example. Contact me if you need more help ----- Original Message -----=20 From: Saad Farooq=20 To: iax...@li...=20 Sent: Tuesday, June 01, 2004 3:27 PM Subject: [Iaxclient-devel] how do use the lib file generated by = IAXcomm project? how do use the lib file generated by IAXcomm project so that i can use = it in my Microsoft Visual C++ project? Any ideas guys? I read in the = archive that we can generate a dll instead of the lib can you guys guide = me how i should go about this. I need to develop applications for the = windows platform and i need to use both VC++ as well as Visual Basic. = Any help regarding this will be greatly appreciated.=20 -------------------------------------------------------------------------= ----- Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger |
From: Maciek K. <mac...@ti...> - 2004-07-15 06:42:25
|
When I originate call to IAXComm from asterisk, more or less one of tree calls fails for no aparent reason. Originating calls to SIP clients works as expected. Anybody has similar problems? Is it asterisk or client problem? In status line IAXComm shows: event (type 2) for non existant session... Asterisk log: Jul 15 00:00:04 DEBUG[1179663]: manager.c:1018 process_message: Manager received command 'Originate' Jul 15 00:00:04 DEBUG[180235]: chan_iax2.c:5057 socket_read: Received iseqno 3 not within window 0->1 Jul 15 00:00:06 DEBUG[180235]: chan_iax2.c:5057 socket_read: Received iseqno 3 not within window 0->1 Jul 15 00:00:14 DEBUG[180235]: chan_iax2.c:5057 socket_read: Received iseqno 3 not within window 0->2 Jul 15 00:00:16 DEBUG[180235]: chan_iax2.c:5057 socket_read: Received iseqno 3 not within window 0->2 Jul 15 00:00:16 DEBUG[180235]: chan_iax2.c:5057 socket_read: Received iseqno 3 not within window 0->2 Jul 15 00:00:34 DEBUG[1441809]: chan_iax2.c:2269 iax2_hangup: We're hanging up IAX2[kamyk]/3 now... -- Hungup 'IAX2[kamyk]/3' -- Executing Answer("OutgoingSpoolFailed", "") in new stack == Spawn extension (meetme, failed, 1) exited non-zero on 'OutgoingSpoolFailed' -- Executing Answer("OutgoingSpoolFailed", "") in new stack == Spawn extension (meetme, h, 1) exited non-zero on 'OutgoingSpoolFailed' Manager events: 2004-07-14 23:59:06,917 DEBUG Newchannel, {'Callerid': '<unknown>', 'State': 'Down', 'Event': 'Newchannel', 'Channel': 'IAX2[kamyk]/3', 'Uniqueid': '1089842404.75'} 2004-07-14 23:59:06,919 DEBUG Newchannel, {'Callerid': '<unknown>', 'State': 'Ringing', 'Event': 'Newchannel', 'Channel': 'IAX2[kamyk]/3', 'Uniqueid': '1089842404.75'} 2004-07-14 23:59:36,909 DEBUG Hangup, {'Cause': '0', 'Event': 'Hangup', 'Channel': 'IAX2[kamyk]/3', 'Uniqueid': '1089842404.75'} 2004-07-14 23:59:36,918 DEBUG Newexten, {'Uniqueid': '1089842434.76', 'Extension': 'failed', 'Priority': '1', 'Context': 'meetme', 'Event': 'Newexten', 'Channel': 'OutgoingSpoolFailed'} 2004-07-14 23:59:36,919 DEBUG Hangup, {'Cause': '0', 'Event': 'Hangup', 'Channel': 'OutgoingSpoolFailed', 'Uniqueid': '1089842434.76'} 2004-07-14 23:59:36,921 DEBUG OriginateFailure, {'Context': 'meetme', 'Exten': 'kolejka', 'Event': 'OriginateFailure', 'Channel':'IAX2/kamyk'} Maciej Kaminski |
From: Rob J. <ju...@ob...> - 2004-07-15 03:07:09
|
Ilguiz, The MSVC build does indeed seem to be out-of-date. It seems to build version 1 (after fixing the mentioned cast) and no useful files are output. I don't see any executables, libraries or DLLs generated. Rob Ilguiz Latypov wrote: > > Christopher, > > On Wed, Jul 14, 2004 at 02:41:53PM -0500, Christopher C. Howard wrote: > > I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : > > unknown size". > [...] > > e->event.voice.data+total_consumed,e->event.voice.datalen-total_consumed, > > iEncodeType); > > I see that the type of the e->event.voice.data pointer is (void *) > indeed. Perhaps, the VC compiler won't assume that the size of the > elements pointed to by such pointer is known. Is it OK to cast the > pointer to (char *) or (uint8_t *) before adding an integer to it? This > will tell the compiler that the size of the elements is 1: > > ((uint8_t *)e->event.voice.data) + total_consumed > > It seems you are compiling the version 1 of the library. Was it a > deliberate choice? My make file from the iaxclient/lib CVS repository > is configured to version 2 by default: > > # set to 2 for IAX2 > IAXVER=2 > > Regards, > > -- > Ilguiz Latypov > > tel. +1 (519) 569-8746 > 66 Wildlark Crescent > Kitchener, Ontario N2N 3E9 > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: Rob J. <ju...@ob...> - 2004-07-15 01:51:53
|
Thanks, I'll give it a try. Rob Adam Hart wrote: > > just cast data to (char*) > > Rob Judd wrote: > > > Chris, > > > > Yeah, I reported that weeeks ago. Looks like no-one cares. > > > > Rob > > > > > > Christopher C. Howard wrote: > > > >>I noticed that there is a VC6 project workspace file (iaxclient_lib.dsw) > >>included in the cvs. Is there a trick to getting iaxclient to compile using > >>VC6? I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : > >>unknown size". > >> > >> while(total_consumed < e->event.voice.datalen) { > >> cur = decode_audio(call, fr, > >> > >>e->event.voice.data+tos-_consumed,e->event.voice.datalen-total_consumed, > >> iEncodeType); > >> > >>Any suggestions? > >> > >>Chris > >> > >>------------------------------------------------------- > >>This SF.Net email is sponsored by BEA Weblogic Workshop > >>FREE Java Enterprise J2EE developer tools! > >>Get your free copy of BEA WebLogic Workshop 8.1 today. > >>http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > >>_______________________________________________ > >>Iaxclient-devel mailing list > >>Iax...@li... > >>https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by BEA Weblogic Workshop > > FREE Java Enterprise J2EE developer tools! > > Get your free copy of BEA WebLogic Workshop 8.1 today. > > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > > _______________________________________________ > > Iaxclient-devel mailing list > > Iax...@li... > > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > |
From: Adam H. <ad...@te...> - 2004-07-15 01:46:57
|
just cast data to (char*) Rob Judd wrote: > Chris, > > Yeah, I reported that weeeks ago. Looks like no-one cares. > > Rob > > > Christopher C. Howard wrote: > >>I noticed that there is a VC6 project workspace file (iaxclient_lib.dsw) >>included in the cvs. Is there a trick to getting iaxclient to compile using >>VC6? I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : >>unknown size". >> >> while(total_consumed < e->event.voice.datalen) { >> cur = decode_audio(call, fr, >> >>e->event.voice.data+total_consumed,e->event.voice.datalen-total_consumed, >> iEncodeType); >> >>Any suggestions? >> >>Chris >> >>------------------------------------------------------- >>This SF.Net email is sponsored by BEA Weblogic Workshop >>FREE Java Enterprise J2EE developer tools! >>Get your free copy of BEA WebLogic Workshop 8.1 today. >>http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click >>_______________________________________________ >>Iaxclient-devel mailing list >>Iax...@li... >>https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > |
From: Rob J. <ju...@ob...> - 2004-07-15 00:57:53
|
Chris, Yeah, I reported that weeeks ago. Looks like no-one cares. Rob Christopher C. Howard wrote: > > I noticed that there is a VC6 project workspace file (iaxclient_lib.dsw) > included in the cvs. Is there a trick to getting iaxclient to compile using > VC6? I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : > unknown size". > > while(total_consumed < e->event.voice.datalen) { > cur = decode_audio(call, fr, > > e->event.voice.data+total_consumed,e->event.voice.datalen-total_consumed, > iEncodeType); > > Any suggestions? > > Chris > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: The S. <kc...@al...> - 2004-07-15 00:02:22
|
Hi Everybody, I have noticed it too and it seems to get worse if your app is running for a longer time (ie a day or so). Is this possible, has it anything to do with time or is it my imatination ? Did somebody already looked into this problem ? Thanx in advance KC On Saturday 26 June 2004 00:54, you wrote: > Folks, > > I have a user who has alerted me to the fact that on occasion IAX Phone > ignores incoming calls. I have turned on the tracing and it appears that > we have situations where messages arrive out-of-order again. > > The last time we ran into this, it was a result of confusion over how to > handle the registration. We were leaving it open, and that seemed to cause > the phone to stop responding eventually. > > Well, this seems eerily similar. I have also noticed the Qualify option > does not appear to work with iaxClient-based clients, but does with others > (Asterisk and FireFly). If you try to qualify an iaxClient-based device, > it fails to ring at all - it shows as unavailable or something when you do > 'iax2 show peers' > > Are any of these conditions related? Anybody (Adam?) have any thoughts on > this? I'll code it if you can come up with the answer. > > Here's the trace: > > libiax2/src/iax.c line 2020: Received iseqno 0 not within window 5->5 > libiax2/src/iax.c line 2039: Packet arrived out of order (expecting 2, got > 0) (frametype = 6, subclass = 1) > libiax2/src/iax.c line 2045: Acking anyway > libiax2/src/iax.c line 2020: Received iseqno 0 not within window 5->5 > libiax2/src/iax.c line 2039: Packet arrived out of order (expecting 2, got > 0) (frametype = 6, subclass = 1) > libiax2/src/iax.c line 2045: Acking anyway > libiax2/src/iax.c line 2020: Received iseqno 0 not within window 5->5 > libiax2/src/iax.c line 2039: Packet arrived out of order (expecting 2, got > 1) (frametype = 6, subclass = 5) > libiax2/src/iax.c line 2045: Acking anyway > libiax2/src/iax.c line 2008: Cancelling transmission of packet 0 > libiax2/src/iax.c line 2008: Cancelling transmission of packet 1 > > Thanks, > > Steve > > Steven Sokol > Owner/Manager > Sokol & Associates, LLC > > Phone: 816.822.1807 > IaxTel: 700.613.9004 > Web: http://www.sokol-associates.com > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel -- ========================================================== Please avoid mailing Word or Power Point attachments. See http://www.fsf.org/philosophy/no-word-attachments.html |
From: Ilguiz L. <ila...@in...> - 2004-07-14 23:22:56
|
Christopher, On Wed, Jul 14, 2004 at 02:41:53PM -0500, Christopher C. Howard wrote: > I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : > unknown size". [...] > e->event.voice.data+total_consumed,e->event.voice.datalen-total_consumed, > iEncodeType); I see that the type of the e->event.voice.data pointer is (void *) indeed. Perhaps, the VC compiler won't assume that the size of the elements pointed to by such pointer is known. Is it OK to cast the pointer to (char *) or (uint8_t *) before adding an integer to it? This will tell the compiler that the size of the elements is 1: ((uint8_t *)e->event.voice.data) + total_consumed It seems you are compiling the version 1 of the library. Was it a deliberate choice? My make file from the iaxclient/lib CVS repository is configured to version 2 by default: # set to 2 for IAX2 IAXVER=2 Regards, -- Ilguiz Latypov tel. +1 (519) 569-8746 66 Wildlark Crescent Kitchener, Ontario N2N 3E9 |
From: Christopher C. H. <chr...@kn...> - 2004-07-14 19:50:44
|
I noticed that there is a VC6 project workspace file (iaxclient_lib.dsw) included in the cvs. Is there a trick to getting iaxclient to compile using VC6? I'm currently getting "iaxclient_lib.c(534) : error C2036: 'void *' : unknown size". while(total_consumed < e->event.voice.datalen) { cur = decode_audio(call, fr, e->event.voice.data+total_consumed,e->event.voice.datalen-total_consumed, iEncodeType); Any suggestions? Chris |
From: Ilguiz L. <ila...@in...> - 2004-07-06 20:50:31
|
Hello, I submitted a combination of 2 patches into the Patches area of the iaxclient project at sourceforge.net. Is this a proper way to publish the proposed changes? I included the combobox enhancement to iaxphone because I didn't know how to compile the other software IAX phone iaxcomm. I now realize I could re-compile wxWindows first to enable the XRC support. I haven't tried doing that yet. Regards, -- Ilguiz Latypov tel. +1 (519) 569-8746 66 Wildlark Crescent Kitchener, Ontario N2N 3E9 |
From: TechniqueCHK <equ...@ch...> - 2004-07-06 11:28:31
|
Helo, I search a delphi or C code source witch use the dll wiax.dll to develop a iax client. Thank! |
From: Rob J. <ju...@ob...> - 2004-07-03 05:55:11
|
Hi, Just downloaded the latest code from CVS and I'm getting an error from iaxclient_lib.c as follows: E:\PA1688\iaxclient\lib\iaxclient_lib.c(534) : error C2036: 'void *' : unknown size Rob |