diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-21 20:04:22 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-21 20:04:22 +0100 |
commit | f612d03ac7d5fb00fa76c3be14d965ab51988504 (patch) | |
tree | 662fc16c3a35a76c3f4c114d4860ff82745f27f9 /src/Erebos/ICE/pjproject.h | |
parent | 652365ffb1c71b5758329c17015cb5c1912da1f4 (diff) | |
parent | 68648650527b769c6ed9f4d3e45aad86187b12b9 (diff) |
Merge branch 'release-0.1'
Diffstat (limited to 'src/Erebos/ICE/pjproject.h')
-rw-r--r-- | src/Erebos/ICE/pjproject.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Erebos/ICE/pjproject.h b/src/Erebos/ICE/pjproject.h index e230e75..e4fcbdb 100644 --- a/src/Erebos/ICE/pjproject.h +++ b/src/Erebos/ICE/pjproject.h @@ -3,7 +3,12 @@ #include <pjnath.h> #include <HsFFI.h> -pj_ice_strans * ice_create(pj_ice_sess_role role, HsStablePtr sptr, HsStablePtr cb); +pj_ice_strans_cfg * ice_cfg_create( const char * stun_server, uint16_t stun_port, + const char * turn_server, uint16_t turn_port ); +void ice_cfg_free( pj_ice_strans_cfg * cfg ); + +pj_ice_strans * ice_create( const pj_ice_strans_cfg *, pj_ice_sess_role role, + HsStablePtr sptr, HsStablePtr cb ); void ice_destroy(pj_ice_strans * strans); ssize_t ice_encode_session(pj_ice_strans *, char * ufrag, char * pass, |