1234567891011121314151617181920212223 |
- --- a/pjnath/include/pjnath/ice_strans.h
- +++ b/pjnath/include/pjnath/ice_strans.h
- @@ -845,6 +845,8 @@ PJ_DECL(pj_status_t) pj_ice_strans_sendt
- int dst_addr_len);
- +PJ_DECL(pj_ice_sess *) pj_ice_strans_get_ice_sess(pj_ice_strans *ice_st);
- +
- /**
- * @}
- */
- --- a/pjnath/src/pjnath/ice_strans.c
- +++ b/pjnath/src/pjnath/ice_strans.c
- @@ -1243,6 +1243,11 @@ PJ_DEF(pj_status_t) pj_ice_strans_sendto
- return PJ_EINVALIDOP;
- }
- +PJ_DECL(pj_ice_sess *) pj_ice_strans_get_ice_sess( pj_ice_strans *ice_st )
- +{
- + return ice_st->ice;
- +}
- +
|