pj_ice_sess.patch 536 B

1234567891011121314151617181920212223
  1. --- a/pjnath/include/pjnath/ice_strans.h
  2. +++ b/pjnath/include/pjnath/ice_strans.h
  3. @@ -845,6 +845,8 @@ PJ_DECL(pj_status_t) pj_ice_strans_sendt
  4. int dst_addr_len);
  5. +PJ_DECL(pj_ice_sess *) pj_ice_strans_get_ice_sess(pj_ice_strans *ice_st);
  6. +
  7. /**
  8. * @}
  9. */
  10. --- a/pjnath/src/pjnath/ice_strans.c
  11. +++ b/pjnath/src/pjnath/ice_strans.c
  12. @@ -1243,6 +1243,11 @@ PJ_DEF(pj_status_t) pj_ice_strans_sendto
  13. return PJ_EINVALIDOP;
  14. }
  15. +PJ_DECL(pj_ice_sess *) pj_ice_strans_get_ice_sess( pj_ice_strans *ice_st )
  16. +{
  17. + return ice_st->ice;
  18. +}
  19. +