Re: [Asterisk-Users] C Manager Interface Client

2005-10-02 Thread Nicolás Gudiño
> Below is the code that we have. We are getting ready to run a sniffer > and see if/why asterisk is doing the writes separately instead of in one > chunk. There were some changes in CVS that appear to address this issue. However, if you are trusting the manager to write full events for your appli

Re: [Asterisk-Users] C Manager Interface Client

2005-10-01 Thread Tzafrir Cohen
On Sat, Oct 01, 2005 at 12:17:38PM -0500, Tressler, Joshua A wrote: > When we pull up a telnet session beside this code, the telnet sessions > shows everything in blocks together. We insert lines between socket > reads, therefore we see > > Event: * > > Privilege: ** > > Instead of > >

RE: [Asterisk-Users] C Manager Interface Client

2005-10-01 Thread Tressler, Joshua A
r)); if(readCode < 0) { printf("ERROR READING FROM SOCKET\n"); exit(0); } printf("%s",buffer); } === -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tzafrir Cohen Sent: Saturday, October 01, 2005 10:19 AM To: a

Re: [Asterisk-Users] C Manager Interface Client

2005-10-01 Thread Tzafrir Cohen
On Fri, Sep 30, 2005 at 11:51:48AM -0500, Tressler, Joshua A wrote: > List: > > This is my first manager client that I've written so please bear with me: > > I am trying to write a C manager interface client to interface with our CRM > software. I am having an issue while reading the data from

RE: [Asterisk-Users] C Manager Interface Client

2005-10-01 Thread Tressler, Joshua A
, Joshua A Sent: Friday, September 30, 2005 11:52 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] C Manager Interface Client   List:   This is my first manager client that I've written so please bear with me:   I am trying to write a C manager interface c

[Asterisk-Users] C Manager Interface Client

2005-09-30 Thread Tressler, Joshua A
List:   This is my first manager client that I've written so please bear with me:   I am trying to write a C manager interface client to interface with our CRM software. I am having an issue while reading the data from the manager interface.   I am writing this in C and I have the following cod