diff options
author | Matt Durgavich <matthew.durgavich@unity3d.com> | 2022-09-24 22:04:54 -0700 |
---|---|---|
committer | Chris Hiszpanski <chris@liburtc.org> | 2022-09-24 22:06:25 -0700 |
commit | 97b0ebc80fa6c975dac3df7ddf3d3158db342366 (patch) | |
tree | b19a6c1fecbcaec627a0d0ad76340ac71bcfcc4d /include | |
parent | 838d2b41ab43ed4779c65f8bf65999f21f59ace5 (diff) |
Signed-off-by: Chris Hiszpanski <chris@liburtc.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/ice.h | 1 | ||||
-rw-r--r-- | include/peerconn.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/ice.h b/include/ice.h index 0f929f7..f2e6364 100644 --- a/include/ice.h +++ b/include/ice.h @@ -55,6 +55,7 @@ typedef struct { // ICE base typedef struct { + int _; } ice_base_t; // ICE component diff --git a/include/peerconn.h b/include/peerconn.h index 63e83ce..fcc56e6 100644 --- a/include/peerconn.h +++ b/include/peerconn.h @@ -50,8 +50,8 @@ typedef struct urtc_peerconn { ice_agent_t *agent; // Local and remote session descriptions - urtc_sdp_t *ldesc; - urtc_sdp_t *rdesc; + sdp_t *ldesc; + sdp_t *rdesc; // Event callbacks void (*onIceCandidate)(const char *cand, void *arg); |