Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
ortp
Commits
d2216f76
Commit
d2216f76
authored
Jul 12, 2011
by
Guillaume Beraudo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update API for ZRTP.
parent
b4e10559
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
include/ortp/zrtp.h
include/ortp/zrtp.h
+1
-0
src/ortp.c
src/ortp.c
+4
-0
src/zrtp.c
src/zrtp.c
+1
-0
No files found.
include/ortp/zrtp.h
View file @
d2216f76
...
...
@@ -69,6 +69,7 @@ typedef struct _OrtpZrtpContext OrtpZrtpContext ;
OrtpZrtpContext
*
ortp_zrtp_context_new
(
RtpSession
*
s
,
OrtpZrtpParams
*
params
);
bool_t
ortp_zrtp_available
();
void
ortp_zrtp_sas_verified
(
OrtpZrtpContext
*
ctx
);
void
ortp_zrtp_sas_reset_verified
(
OrtpZrtpContext
*
ctx
);
...
...
src/ortp.c
View file @
d2216f76
...
...
@@ -34,6 +34,10 @@ int ortp_allocations=0;
#ifdef HAVE_SRTP
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#include <srtp/srtp.h>
#endif
...
...
src/zrtp.c
View file @
d2216f76
...
...
@@ -42,6 +42,7 @@ OrtpZrtpContext* ortp_zrtp_context_new(RtpSession *s, OrtpZrtpParams *params){
return
NULL
;
}
bool_t
ortp_zrtp_available
(){
return
FALSE
;}
void
ortp_zrtp_sas_verified
(
OrtpZrtpContext
*
ctx
){}
void
ortp_zrtp_sas_reset_verified
(
OrtpZrtpContext
*
ctx
){}
void
ortp_zrtp_context_destroy
(
OrtpZrtpContext
*
ctx
){}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment