types change for msvc build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2853 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d5ac9cba0c
commit
7805761afd
|
@ -227,12 +227,12 @@ static void strip_cr(char *s)
|
||||||
|
|
||||||
static switch_status_t read_packet(listener_t *listener, switch_event_t **event, uint32_t timeout)
|
static switch_status_t read_packet(listener_t *listener, switch_event_t **event, uint32_t timeout)
|
||||||
{
|
{
|
||||||
switch_size_t mlen;
|
switch_size_t mlen, bytes = 0;
|
||||||
char mbuf[2048] = "";
|
char mbuf[2048] = "";
|
||||||
char buf[1024] = "";
|
char buf[1024] = "";
|
||||||
switch_size_t len;
|
switch_size_t len;
|
||||||
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
||||||
int count = 0, bytes = 0;
|
int count = 0;
|
||||||
uint32_t elapsed = 0;
|
uint32_t elapsed = 0;
|
||||||
time_t start = 0;
|
time_t start = 0;
|
||||||
void *pop;
|
void *pop;
|
||||||
|
|
Loading…
Reference in New Issue