git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11193 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-01-14 15:53:00 +00:00
parent 7f7d151eab
commit 12541a7337
2 changed files with 15 additions and 0 deletions

View File

@ -22358,6 +22358,14 @@ SWIGEXPORT unsigned short SWIGSTDCALL CSharp_switch_rtp_get_remote_port(void * j
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_rtp_reset_media_timer(void * jarg1) {
switch_rtp_t *arg1 = (switch_rtp_t *) 0 ;
arg1 = (switch_rtp_t *)jarg1;
switch_rtp_reset_media_timer(arg1);
}
SWIGEXPORT void SWIGSTDCALL CSharp_switch_rtp_set_max_missed_packets(void * jarg1, unsigned long jarg2) {
switch_rtp_t *arg1 = (switch_rtp_t *) 0 ;
uint32_t arg2 ;

View File

@ -3384,6 +3384,10 @@ public class freeswitch {
return ret;
}
public static void switch_rtp_reset_media_timer(SWIGTYPE_p_switch_rtp rtp_session) {
freeswitchPINVOKE.switch_rtp_reset_media_timer(SWIGTYPE_p_switch_rtp.getCPtr(rtp_session));
}
public static void switch_rtp_set_max_missed_packets(SWIGTYPE_p_switch_rtp rtp_session, uint max) {
freeswitchPINVOKE.switch_rtp_set_max_missed_packets(SWIGTYPE_p_switch_rtp.getCPtr(rtp_session), max);
}
@ -9586,6 +9590,9 @@ class freeswitchPINVOKE {
[DllImport("mod_managed", EntryPoint="CSharp_switch_rtp_get_remote_port")]
public static extern ushort switch_rtp_get_remote_port(HandleRef jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_rtp_reset_media_timer")]
public static extern void switch_rtp_reset_media_timer(HandleRef jarg1);
[DllImport("mod_managed", EntryPoint="CSharp_switch_rtp_set_max_missed_packets")]
public static extern void switch_rtp_set_max_missed_packets(HandleRef jarg1, uint jarg2);