summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsip/sip_transport.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-01-05 23:35:46 +0000
committerBenny Prijono <bennylp@teluu.com>2006-01-05 23:35:46 +0000
commit67d6a30732fd1e1fae2f98f646d97356b2eaa8c9 (patch)
tree599de20e4a6554656db42030cdce7c1f2ccdb655 /pjsip/include/pjsip/sip_transport.h
parent944562492d0c16b9e44ec4e1cc97657846d82cd0 (diff)
Added loop transport to test transaction
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@107 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsip/sip_transport.h')
-rw-r--r--pjsip/include/pjsip/sip_transport.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjsip/include/pjsip/sip_transport.h b/pjsip/include/pjsip/sip_transport.h
index 6e6ba428..c296054c 100644
--- a/pjsip/include/pjsip/sip_transport.h
+++ b/pjsip/include/pjsip/sip_transport.h
@@ -171,7 +171,7 @@ struct pjsip_rx_data
pj_uint32_t zero;
/** The length of the packet received. */
- int len;
+ pj_ssize_t len;
/** The source address from which the packet was received. */
pj_sockaddr src_addr;
@@ -251,9 +251,9 @@ struct pjsip_rx_data
struct
{
/**
- * This the transaction key generated for the message.
+ * Data attached by modules to this message.
*/
- pj_str_t key;
+ void *mod_data[PJSIP_MAX_MODULE];
} endpt_info;