make all buffers the same size

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@384 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2006-01-14 16:44:52 +00:00
parent b0db977fd4
commit 2a329aa5e7
8 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ struct private_object {
switch_frame read_frame;
switch_codec read_codec;
switch_codec write_codec;
unsigned char read_buf[1024];
unsigned char read_buf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
switch_caller_profile *caller_profile;
int cid;
int did;
+1 -1
View File
@@ -80,7 +80,7 @@ struct private_object {
switch_codec read_codec;
switch_codec write_codec;
struct switch_frame read_frame;
unsigned char databuf[1024];
unsigned char databuf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
switch_core_session *session;
struct iax_session *iax_session;
switch_caller_profile *caller_profile;
+1 -1
View File
@@ -52,7 +52,7 @@ static struct {
struct private_object {
unsigned int flags;
struct switch_frame frame;
unsigned char databuf[1024];
unsigned char databuf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
switch_core_session *session;
switch_caller_profile *caller_profile;
};
@@ -83,7 +83,7 @@ struct private_object {
switch_codec read_codec;
switch_codec write_codec;
struct switch_frame read_frame;
unsigned char databuf[1024];
unsigned char databuf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
switch_core_session *session;
switch_caller_profile *caller_profile;
char call_id[50];
+1 -1
View File
@@ -88,7 +88,7 @@ static struct {
struct private_object {
unsigned int flags; /* FLAGS */
struct switch_frame frame; /* Frame for Writing */
unsigned char databuf[1024];
unsigned char databuf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
struct sangoma_pri *spri;
pri_event ring_event;
pri_event hangup_event;
+1 -1
View File
@@ -138,7 +138,7 @@ struct private_object {
switch_pollfd_t read_poll;
switch_pollfd_t write_poll;
switch_pollfd_t command_poll;
unsigned char databuf[2048];
unsigned char databuf[SWITCH_RECCOMMENDED_BUFFER_SIZE];
switch_mutex_t *iolock;
switch_sockaddr_t *udpread;
switch_sockaddr_t *udpwrite;