aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/chan_h323.h
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-17 19:38:30 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-17 19:38:30 +0000
commit2e12cb472384a279a33056b889825cfd64336f10 (patch)
tree1cf265ad477f9938a00ce02e66f84998226810c8 /channels/h323/chan_h323.h
parent2423ab16e6092fa73c121d9a952a2d4750dab760 (diff)
actually implement the setting of noFastStart and noH245Tunneling.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3459 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323/chan_h323.h')
-rwxr-xr-xchannels/h323/chan_h323.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/channels/h323/chan_h323.h b/channels/h323/chan_h323.h
index e45d3c4dc..bfdd0dd82 100755
--- a/channels/h323/chan_h323.h
+++ b/channels/h323/chan_h323.h
@@ -57,16 +57,16 @@ struct oh323_user {
struct oh323_peer {
char name[80];
char context[80];
- int noFastStart;
- int noH245Tunneling;
- int noSilenceSuppression;
- int inUse;
- int outgoinglimit;
- int bridge;
- int nat;
- int dtmfmode;
- struct sockaddr_in addr;
+ int noFastStart;
+ int noH245Tunneling;
+ int noSilenceSuppression;
+ int inUse;
+ int outgoinglimit;
+ int bridge;
+ int nat;
+ int dtmfmode;
int delme;
+ struct sockaddr_in addr;
struct oh323_peer *next;
};
@@ -88,7 +88,7 @@ typedef struct call_options {
char *callerid;
char *callername;
int noFastStart;
- int noH245Tunnelling;
+ int noH245Tunneling;
int noSilenceSuppression;
unsigned int port;
} call_options_t;
@@ -98,7 +98,6 @@ typedef struct call_options {
asterisk channels to acutal h.323 connections */
typedef struct call_details {
unsigned int call_reference;
-
const char *call_token;
const char *call_source_aliases;
const char *call_dest_alias;
@@ -167,7 +166,7 @@ extern "C" {
#endif
void h323_gk_urq(void);
- void h323_end_point_create(void);
+ void h323_end_point_create(int, int);
void h323_end_process(void);
int h323_end_point_exist(void);