Update wrappers

This commit is contained in:
Doubango Telecom 2018-09-06 22:00:04 +02:00
parent 9bbe77061a
commit 671dbaaf77
8 changed files with 46 additions and 34 deletions

View File

@ -188,6 +188,7 @@ typedef enum tsip_invite_event_type_e
// Sip Events
//
tsip_i_newcall,
tsip_i_prechecking,
//! in-dialog requests/reponses
tsip_i_request,

View File

@ -10,6 +10,7 @@ namespace org.doubango.tinyWRAP {
public enum tsip_invite_event_type_t {
tsip_i_newcall,
tsip_i_prechecking,
tsip_i_request,
tsip_ao_request,
tsip_o_ect_trying,

View File

@ -10,6 +10,7 @@ package org.doubango.tinyWRAP;
public enum tsip_invite_event_type_t {
tsip_i_newcall,
tsip_i_prechecking,
tsip_i_request,
tsip_ao_request,
tsip_o_ect_trying,

View File

@ -10,6 +10,7 @@ package org.doubango.tinyWRAP;
public enum tsip_invite_event_type_t {
tsip_i_newcall,
tsip_i_prechecking,
tsip_i_request,
tsip_ao_request,
tsip_o_ect_trying,

View File

@ -2610,6 +2610,7 @@ package tinyWRAP;
*tsip_i_options = *tinyWRAPc::tsip_i_options;
*tsip_ao_options = *tinyWRAPc::tsip_ao_options;
*tsip_i_newcall = *tinyWRAPc::tsip_i_newcall;
*tsip_i_prechecking = *tinyWRAPc::tsip_i_prechecking;
*tsip_i_request = *tinyWRAPc::tsip_i_request;
*tsip_ao_request = *tinyWRAPc::tsip_ao_request;
*tsip_o_ect_trying = *tinyWRAPc::tsip_o_ect_trying;

View File

@ -29793,6 +29793,11 @@ XS(SWIG_init) {
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1(static_cast< int >(tsip_i_newcall)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
/*@SWIG:/usr/local/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "tsip_i_prechecking", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1(static_cast< int >(tsip_i_prechecking)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
/*@SWIG:/usr/local/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "tsip_i_request", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1(static_cast< int >(tsip_i_request)));

View File

@ -1755,6 +1755,7 @@ tsip_ao_info = _tinyWRAP.tsip_ao_info
tsip_i_options = _tinyWRAP.tsip_i_options
tsip_ao_options = _tinyWRAP.tsip_ao_options
tsip_i_newcall = _tinyWRAP.tsip_i_newcall
tsip_i_prechecking = _tinyWRAP.tsip_i_prechecking
tsip_i_request = _tinyWRAP.tsip_i_request
tsip_ao_request = _tinyWRAP.tsip_ao_request
tsip_o_ect_trying = _tinyWRAP.tsip_o_ect_trying

View File

@ -28586,6 +28586,7 @@ SWIG_init(void) {
SWIG_Python_SetConstant(d, "tsip_i_options",SWIG_From_int(static_cast< int >(tsip_i_options)));
SWIG_Python_SetConstant(d, "tsip_ao_options",SWIG_From_int(static_cast< int >(tsip_ao_options)));
SWIG_Python_SetConstant(d, "tsip_i_newcall",SWIG_From_int(static_cast< int >(tsip_i_newcall)));
SWIG_Python_SetConstant(d, "tsip_i_prechecking",SWIG_From_int(static_cast< int >(tsip_i_prechecking)));
SWIG_Python_SetConstant(d, "tsip_i_request",SWIG_From_int(static_cast< int >(tsip_i_request)));
SWIG_Python_SetConstant(d, "tsip_ao_request",SWIG_From_int(static_cast< int >(tsip_ao_request)));
SWIG_Python_SetConstant(d, "tsip_o_ect_trying",SWIG_From_int(static_cast< int >(tsip_o_ect_trying)));