Displaying 1 result from an estimated 1 matches for "msock".
Did you mean:
sock
2006 Jan 10
2
Problem with Action:Originate with ASterisk Manager
Hi Asterisk-users,
I am working with Aterisk Manager API's.
I can login successfuly with the following.
char buff[256];
strcpy(buff, "Action: Login\r\nUsername: admin\r\nSecret: unix\r\n\r\n");
send(msock, buff, 255);
Now I want to try Action: Originate, therefore I tried the following
char buff1[256];
strcpy(buff1, "Action: Originate\r\nChannel: SIP/101\r\nExten: 102\r\nPriority: 1\r\nContext: default\r\n\r\n");
send(msock, buff1, 255);
But I get the following error response fr...