diff --git a/include/asterisk/rtp.h b/include/asterisk/rtp.h index 7c66a85dab4d29da595394088a675bb5dd9fada6..791e46e9f8cf458437ec700a0785a6f4abada456 100755 --- a/include/asterisk/rtp.h +++ b/include/asterisk/rtp.h @@ -46,6 +46,7 @@ int ast2rtp(int id); int rtp2ast(int id); +char *ast2rtpn(int id); #if defined(__cplusplus) || defined(c_plusplus) } diff --git a/res/res_crypto.c b/res/res_crypto.c index 6d9b4353ec7b59afc54eaa76ff72124c61118851..5ac2e441b59254b6519db76ff74a31d591ab0af8 100755 --- a/res/res_crypto.c +++ b/res/res_crypto.c @@ -81,11 +81,13 @@ struct ast_key { static struct ast_key *keys = NULL; + +#if 0 static int fdprint(int fd, char *s) { return write(fd, s, strlen(s) + 1); } - +#endif static int pw_cb(char *buf, int size, int rwflag, void *userdata) { struct ast_key *key = (struct ast_key *)userdata;