-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 22335 b: refs/heads/master c: 5e35941 h: refs/heads/master i: 22333: 81868c7 22331: b3ba76d 22327: 6c1a99f 22319: bbe6d7c 22303: 89b33c7 22271: bf70158 v: v3
- Loading branch information
Jing Min Zhao
authored and
David S. Miller
committed
Mar 21, 2006
1 parent
568a23c
commit 85a7b7a
Showing
11 changed files
with
6,232 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 30ca3e376e82cc44488b1d377adfb10b5818548e | ||
refs/heads/master: 5e35941d990123f155b02d5663e51a24f816b6f3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#ifndef _IP_CONNTRACK_H323_H | ||
#define _IP_CONNTRACK_H323_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#define RAS_PORT 1719 | ||
#define Q931_PORT 1720 | ||
#define H323_RTP_CHANNEL_MAX 4 /* Audio, video, FAX and other */ | ||
|
||
/* This structure exists only once per master */ | ||
struct ip_ct_h323_master { | ||
|
||
/* Original and NATed Q.931 or H.245 signal ports */ | ||
u_int16_t sig_port[IP_CT_DIR_MAX]; | ||
|
||
/* Original and NATed RTP ports */ | ||
u_int16_t rtp_port[H323_RTP_CHANNEL_MAX][IP_CT_DIR_MAX]; | ||
|
||
union { | ||
/* RAS connection timeout */ | ||
u_int32_t timeout; | ||
|
||
/* Next TPKT length (for separate TPKT header and data) */ | ||
u_int16_t tpkt_len[IP_CT_DIR_MAX]; | ||
}; | ||
}; | ||
|
||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.