aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPascal Bühler <pabuhler@cisco.com>2017-02-16 09:39:13 +0100
committerPascal Bühler <pabuhler@cisco.com>2017-02-16 09:39:13 +0100
commitef54b903735c806d8fe2e6e99a77bf6e91bef36b (patch)
tree551e357bbcb54678f9293601f51ca99deedd249b /include
parentf15c7e0bb80b06481c5b42fb16406aaf0487b5e3 (diff)
downloadlibsrtp2-ef54b903735c806d8fe2e6e99a77bf6e91bef36b.tar.gz
Change to use uint32_t for ssrc
It is not expect that anyone was using this value before without including the private header. So it should be safe to change and require a recompile of applications using this functionality.
Diffstat (limited to 'include')
-rw-r--r--include/srtp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/srtp.h b/include/srtp.h
index e21ae00..a429354 100644
--- a/include/srtp.h
+++ b/include/srtp.h
@@ -1408,7 +1408,7 @@ typedef enum {
typedef struct srtp_event_data_t {
srtp_t session; /**< The session in which the event happend. */
- uintptr_t ssrc; /**< The ssrc in host order of the stream in which the event happend */
+ uint32_t ssrc; /**< The ssrc in host order of the stream in which the event happend */
srtp_event_t event; /**< An enum indicating the type of event. */
} srtp_event_data_t;