summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsip/sip_transport.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-05-11 15:14:34 +0000
committerBenny Prijono <bennylp@teluu.com>2007-05-11 15:14:34 +0000
commit208776ec0c5c77623637a28b88391067df24e682 (patch)
treed474825faeaa48869df57b5470a8ba417ebf4489 /pjsip/src/pjsip/sip_transport.c
parentb4e01cefd4f354128396e85f205ccfa0879bc319 (diff)
HUGE changeset to make the rest of the libraries compile with C++ mode
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1266 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src/pjsip/sip_transport.c')
-rw-r--r--pjsip/src/pjsip/sip_transport.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pjsip/src/pjsip/sip_transport.c b/pjsip/src/pjsip/sip_transport.c
index afe0f1e4..91ac4343 100644
--- a/pjsip/src/pjsip/sip_transport.c
+++ b/pjsip/src/pjsip/sip_transport.c
@@ -97,7 +97,7 @@ struct transport_key
/*
* Transport names.
*/
-struct
+struct transport_names_t
{
pjsip_transport_type_e type;
pj_uint16_t port;
@@ -216,7 +216,7 @@ pjsip_transport_get_flag_from_type( pjsip_transport_type_e type )
PJSIP_TRANSPORT_UDP, 0);
/* Check that argument is valid. */
- PJ_ASSERT_RETURN(type < PJ_ARRAY_SIZE(transport_names), 0);
+ PJ_ASSERT_RETURN((unsigned)type < PJ_ARRAY_SIZE(transport_names), 0);
/* Return transport flag. */
return transport_names[type].flag;
@@ -235,7 +235,7 @@ pjsip_transport_get_default_port_for_type(pjsip_transport_type_e type)
PJSIP_TRANSPORT_UDP, 0);
/* Check that argument is valid. */
- PJ_ASSERT_RETURN(type < PJ_ARRAY_SIZE(transport_names), 5060);
+ PJ_ASSERT_RETURN((unsigned)type < PJ_ARRAY_SIZE(transport_names), 5060);
/* Return the port. */
return transport_names[type].port;
@@ -253,7 +253,7 @@ PJ_DEF(const char*) pjsip_transport_get_type_name(pjsip_transport_type_e type)
PJSIP_TRANSPORT_UDP, "Unknown");
/* Check that argument is valid. */
- PJ_ASSERT_RETURN(type < PJ_ARRAY_SIZE(transport_names), "Unknown");
+ PJ_ASSERT_RETURN((unsigned)type<PJ_ARRAY_SIZE(transport_names), "Unknown");
/* Return the port. */
return transport_names[type].name.ptr;
@@ -414,7 +414,7 @@ static char *get_msg_info(pj_pool_t *pool, const char *obj_name,
cseq->cseq, obj_name);
}
- if (len < 1 || len >= sizeof(info_buf)) {
+ if (len < 1 || len >= (int)sizeof(info_buf)) {
return (char*)obj_name;
}