- corrected the calling arguments of rtp_masq dummy

routines (non IPCHAINS capable kernels)
This commit is contained in:
Thomas Ries
2003-09-24 16:57:24 +00:00
parent 0ba57c0e9b
commit 414f2f3e66
2 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
0.3.7
=====
22-Sep-2003: - \0 termination of read SIP telegram from line
24-Sep-2003: - corrected the calling arguments of rtp_masq dummy
routines (non IPCHAINS capable kernels)
22-Sep-2003: - \0 termination of read() SIP telegram from line
0.3.6
=====
+3 -3
View File
@@ -337,14 +337,14 @@ exit:
* don't have ipchains or iptables - dummy routines and complain
*/
int rtp_masq_start_fwd(int proxy_idx,
int rtp_masq_start_fwd(osip_call_id_t *callid, int media_stream_no,
struct in_addr outbound_ipaddr, int *outbound_lcl_port,
struct in_addr lcl_client_ipaddr, int lcl_clientport){
struct in_addr lcl_client_ipaddr, int lcl_clientport) {
outbound_lcl_port=0;
ERROR("Masquerading support is not enabled (compile time config option)");
return STS_FAILURE;
}
int rtp_masq_stop_fwd(int proxy_idx) {
int rtp_masq_stop_fwd(osip_call_id_t *callid) {
return STS_FAILURE;
}
#endif