Revision 155513 of chan_sip.c in trunk inadvertently

removed a very important line to set the "len" field
for incoming SIP requests. The result was that all incoming
SIP messages appeared to be 0-length, meaning Asterisk
could do no meaningful processing of anything SIP-related



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@156962 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Mark Michelson 17 years ago
parent 655abd1757
commit 6254c5cd2f

@ -20114,6 +20114,7 @@ static int sipsock_read(int *id, int fd, short events, void *ignore)
return -1;
}
req.len = res;
req.socket.fd = sipsock;
req.socket.type = SIP_TRANSPORT_UDP;
req.socket.ser = NULL;

Loading…
Cancel
Save