Hi list, I want to compile gnugk2.2.0 in VC7.1, I also want to use LARGE_FDSET. So I open the comment in Yasocket.h (#define LARGE_FDSET 32768), but when I compile the project, a lot error emerges. If I don't open the comment (#define LARGE_FDSET 32768), everything is ok. Why ? Regards, steven -----邮件原件----- 发件人: openh323gk-users-admin@xxxxxxxxxxxxxxxxxxxxx [mailto:openh323gk-users-admin@xxxxxxxxxxxxxxxxxxxxx] 代表 openh323gk-users-request@xxxxxxxxxxxxxxxxxxxxx 发送时间: 2005年1月21日 10:25 收件人: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx 主题: Openh323gk-users digest, Vol 1 #1654 - 3 msgs Send Openh323gk-users mailing list submissions to openh323gk-users@xxxxxxxxxxxxxxxxxxxxx To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/openh323gk-users or, via email, send a message with subject or body 'help' to openh323gk-users-request@xxxxxxxxxxxxxxxxxxxxx You can reach the person managing the list at openh323gk-users-admin@xxxxxxxxxxxxxxxxxxxxx When replying, please edit your Subject line so it is more specific than "Re: Contents of Openh323gk-users digest..." Today's Topics: 1. Operating Systems (Tim Petersen) 2. Re: For Michal: detailing. 3 problems I can\'t figure out (Zygmuntowicz Michal) 3. j323 endpoint config gnugk problem (suhao yuan) --__--__-- Message: 1 Date: Thu, 20 Jan 2005 15:20:30 -0800 From: Tim Petersen <tpetersen@xxxxxxxxxxxxx> To: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Subject: Operating Systems Reply-To: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Hello All, Is there a list of tested operating systems that the GNU GK is known to work on? Specifically GenToo (www.gentoo.org) Any feed back would be greatly appreciated. --__--__-- Message: 2 From: "Zygmuntowicz Michal" <m.zygmuntowicz@xxxxxxx> To: <openh323gk-users@xxxxxxxxxxxxxxxxxxxxx> Subject: Re: For Michal: detailing. 3 problems I can\'t figure out Date: Fri, 21 Jan 2005 00:58:32 +0100 Organization: Quarcom Reply-To: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Finally, I found a source of the 2ND problem - it's because you receive LRQ on a multicast address - I guess nobody used it so far and that's why the bug stayed hidden. I'll apply a patch to the cvs. You can wait until the patch is available or use unicast addresses. ----- Original Message ----- From: "Manda Costin" <siderite@xxxxx> Sent: Thursday, January 20, 2005 2:10 PM > Pe 20 Jan 2005, la 13:49, Zygmuntowicz Michal <m.zygmuntowicz@xxxxxxx> a > scris: > >> >>1ST PROBLEM: >>You have wrong order of things here - you should really take >>a look at the manual - there is an example how to do this correctly. >> >>Basically, you need: >>[RasSrv::Neighbors] >>InterpointGKBuc001=CiscoGK >> >> [Neighbor::InterpointGKBuc001] >> >>what is pretty natural, as CiscoGK is only a type of neighbor >>and you can have multiple neighbors of this type. > > Well, I did that, and it worked. Thanks. I do think that the manual is a > bit vague at this point. > >> >>2ND PROBLEM: >>Maybe you hit some bug, I'll check the sources. Make also sure >>that your gatekeeper is actually listening to the signalling port (1720 or >>1721). > > Well, the log says listening to 1719 (U) and 1718 (MCast) and 7000 > (status)... [panic] what should I do?! [reading the manual] > it says there that the signaling port is default 1720. I will explicitly > put it in the config. > Nothing changed, nmap scanning shows all but 1719/udp ports closed. I > don't know how else to check if the port is open. > Also did the same on [RoutedMode] with CallSignalPort=1721 > The log says now that gnugk is listening on 1721. Also nmap shows 1721/tcp > open. > so this is a bug, CallSignalPort must be explicitly set. > The LCF format remains unchanged, though, and the call does NOT go > through. > >>3RD PROBLEM: >>FileAcct will store accounting records only if a call is passing >>through the gatekeeper. If you are using direct mode and LRQ, >>the call will not go through the gatekeeper, rather directly >>to the termination gateway. > > Hence my problem :) > >> >>----- Original Message ----- >>From: "Siderite" <Siderite@xxxxx> >>Sent: Thursday, January 20, 2005 11:58 AM >> >> >>> I am detailing a post (sent from another email address) to which >>> Michal told me to add more information: > > > > >>> As in the previous post I am trying to do 2 things: > > >>> >>> I. get calls transfered by a Cisco gatekeeper to a Cisco gateway through >>> the >>> GnuGK (GW1->CiscoGK->GnuGK->GW2) >>> >>> II. get a true record of the calls that go through GnuGK >>> >>> ====================== >>> >>> To do that I followed the instructions in the manuals and configured >>> things like this: >>> CiscoGK has GnuGK set up as a remote zone (this config works with other >>> gatekeepers so I don't think there is any problem here) >>> GnuGk has CiscoGK set up as a neighbor >>> >>> 1ST PROBLEM: >>> >>> the new neighbor config system doesn't work: >>> [RasSrv::Neighbors] >>> CiscoGK=InterpointGKBuc001 >>> >>> [Neighbor::CiscoGK] >>> Host=xxx.xxx.xxx.147 >>> AcceptPrefixes=* >>> SendPrefixes=* >>> ForwardHopCount=2 >>> ForwardLRQ=Always >>> ForwardResponse=1 >>> >>> This is the GnuGK config and the log says, immediately after starting >>> the gatekeeper: >>> 2005/01/20 12:41:04.091 1 Neighbor.cxx(710) NB Can't get profile for >>> neighbor CiscoGK >>> 2005/01/20 12:41:04.091 1 Neighbor.cxx(159) NB Delete neighbor >>> CiscoGK >>> >>> I used the old system and thus configured the neighbor like this: >>> [RasSrv::Neighbors] >>> InterpointGKBuc001=193.230.176.147; >>> >>> and it seems to be working. >>> >>> Then I configured the GnuGK to be in routed mode. >>> [RoutedMode] >>> GKRouted=1 >>> H245Routed=1 >>> >>> 2ND PROBLEM: >>> >>> When I send a call from GW1 it sends the LRQ to CiscoGK, then it goes to >>> the GnuGK and then a LCF is issued. The LCF looks like this: >>> locationConfirm { >>> requestSeqNum = 8177 >>> callSignalAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 17 ..w. >>> } >>> port = 0 >>> } >>> rasAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 17 ..w. >>> } >>> port = 1719 >>> } >>> } >>> >>> The CallSignalAddress has port 0 !!!??? and the IP is the IP of GnuGK. >>> >>> A solution is to remove the routed mode, even if I do need the control >>> and information wealth that routed mode offers. Then the LCF looks like >>> this: >>> locationConfirm { >>> requestSeqNum = 8193 >>> callSignalAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 98 .... >>> } >>> port = 1720 >>> } >>> rasAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 17 ..w. >>> } >>> port = 1719 >>> } >>> } >>> which is the correct way it should look, I guess, and the call is >>> transfered. >>> >>> 3RD PROBLEM: >>> I configured logging like this: >>> [CallTable] >>> GenerateUCCDR=1 >>> >>> [Gatekeeper::Acct] >>> FileAcct=required;start,stop >>> >>> [FileAcct] >>> DetailFile=/usr/local/var/log/gnugk.detail.log >>> StandardCDRFormat=1 >>> ;CDRString=%g|%n|%d|%c|%s|%u|%{CallId}|%{ConfId}|%{setup-time}|%{connect -time}|%{disconnect-time}|%{caller-ip}|%{caller-port}|%{callee-ip}|%{cal lee-port}|%{src-info}|%{dest-info}|%{Calling-Station-Id}|%{Called-Statio n-Id} >>> >>> The log file is generated, but nothing at all is written in the file. >>> >>> Please help! >>> >>> ========================== >>> detail gnugk config [routed mode] >>> [Gatekeeper::Main] >>> Fourtytwo=42 >>> Name=gnugk >>> >>> [GkStatus::Auth] >>> rule=allow >>> >>> [RoutedMode] >>> GKRouted=1 >>> H245Routed=1 >>> ;AcceptNeighborsCalls=1 >>> ;AcceptUnregisteredCalls=0 >>> ;SupportNATedEndpoints=1 >>> ;RemoveH245AddressOnTunneling=1 >>> ;ForwardOnFacility=0 >>> >>> [Proxy] >>> Enable=0 >>> ;ProxyForNAT=1 >>> >>> [RasSrv::GWPrefixes] >>> amir=074 >>> >>> [RasSrv::PermanentEndpoints] >>> xxx.xxx.xxx.152=amir;074 >>> >>> [RasSrv::Neighbors] >>> InterpointGKBuc001=xxx.xxx.xxx.147; >>> >>> [RasSrv::LRQFeatures] >>> NeighborTimeout=2 >>> ForwardHopCount=2 >>> CiscoGKCompatible=1 >>> ;IncludeDestinationInfoInLCF=0 >>> >>> [CallTable] >>> GenerateUCCDR=1 >>> >>> [Gatekeeper::Acct] >>> FileAcct=required;start,stop >>> >>> [FileAcct] >>> DetailFile=/usr/local/var/log/gnugk.detail.log >>> StandardCDRFormat=0 >>> CDRString=%g|%n|%d|%c|%s|%u|%{CallId}|%{ConfId}|%{setup-time}|%{connect- time}|%{disconnect-time}|%{caller-ip}|%{caller-port}|%{callee-ip}|%{call ee-port}|%{src-info}|%{dest-info}|%{Calling-Station-Id}|%{Called-Station -Id} >>> >>> or >>> >>> StandardCDRFormat=1 >>> >>> ============================== >>> >>> detail log [routed mode]: >>> 2005/01/20 12:20:56.339 4 RasSrv.cxx(199) RAS Receiving on >>> xxx.xxx.xxx.23:1718(Mcast) >>> 2005/01/20 12:20:56.340 2 RasSrv.cxx(168) RAS Read from >>> xxx.xxx.xxx.147:1719 >>> 2005/01/20 12:20:56.358 3 RasSrv.cxx(207) RAS >>> locationRequest { >>> requestSeqNum = 8177 >>> destinationInfo = 1 entries { >>> [0]=dialedDigits "0744325669" >>> } >>> nonStandardData = { >>> nonStandardIdentifier = h221NonStandard { >>> t35CountryCode = 181 >>> t35Extension = 0 >>> manufacturerCode = 18 >>> } >>> data = 63 octets { >>> 82 84 b0 11 00 d4 4f 71 f1 6a 02 11 d9 aa f0 f5 >>> ......Oq.j...... >>> bd 2d 41 1d ea 01 83 27 02 04 00 a7 76 58 99 c4 >>> .-A....'....vX.. >>> 0e 00 61 00 73 00 7c 00 69 00 6e 00 74 00 65 00 >>> ..a.s.|.i.n.t.e. >>> 72 00 70 00 6f 00 69 00 6e 00 74 00 32 00 35 >>> r.p.o.i.n.t.2.5 >>> } >>> } >>> replyAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 93 .... >>> } >>> port = 1719 >>> } >>> sourceInfo = 1 entries { >>> [0]=h323_ID 18 characters { >>> 0049 006e 0074 0065 0072 0070 006f 0069 Interpoi >>> 006e 0074 0047 004b 0042 0075 0063 0030 ntGKBuc0 >>> 0030 0031 01 >>> } >>> } >>> canMapAlias = TRUE >>> } >>> 2005/01/20 12:20:56.371 5 job.cxx(360) JOB Worker threads: 6 >>> total - 6 busy, 0 idle >>> 2005/01/20 12:20:56.371 5 job.cxx(188) JOB Starting Job LRQ at >>> Worker thread 114696 >>> 2005/01/20 12:20:56.371 1 RasSrv.cxx(328) RAS LRQ Received >>> 2005/01/20 12:20:56.372 5 Routing.h(125) ROUTING Checking policy >>> Explicit for the request LRQ 8177 >>> 2005/01/20 12:20:56.372 5 Routing.h(125) ROUTING Checking policy >>> Internal for the request LRQ 8177 >>> 2005/01/20 12:20:56.372 2 RasTbl.cxx(664) RASTBL Gateway 1523_endp >>> matched by prefix 074 >>> 2005/01/20 12:20:56.372 4 RasTbl.cxx(1068) Prefix match for GW >>> xxx.xxx.xxx.152:1720 >>> 2005/01/20 12:20:56.372 5 Routing.h(131) ROUTING Policy Internal >>> applied to the request LRQ 8177 >>> 2005/01/20 12:20:56.374 2 RasSrv.cxx(373) >>> LCF|xxx.xxx.xxx.147|1523_endp|0744325669:dialedDigits|xxx.xxx.xxx.147; >>> 2005/01/20 12:20:56.375 6 yasocket.cxx(610) 127.0.0.1:33061 72 bytes >>> sent >>> 2005/01/20 12:20:56.375 3 RasSrv.cxx(219) RAS Send to >>> xxx.xxx.xxx.147:1719 >>> locationConfirm { >>> requestSeqNum = 8177 >>> callSignalAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 17 ..w. >>> } >>> port = 0 >>> } >>> rasAddress = ipAddress { >>> ip = 4 octets { >>> xx xx xx 17 ..w. >>> } >>> port = 1719 >>> } >>> } >>> 2005/01/20 12:20:56.376 5 RasSrv.cxx(233) RAS Sent Successful >>> 2005/01/20 12:20:56.376 5 job.cxx(423) JOB Job LRQ deleted >>> >>> >>> -- >>> Siderite <Siderite@xxxxx> --__--__-- Message: 3 Date: Fri, 21 Jan 2005 10:22:39 +0800 (CST) From: suhao yuan <suhaoyuan23@xxxxxxxxxxxx> To: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Subject: j323 endpoint config gnugk problem Reply-To: openh323gk-users@xxxxxxxxxxxxxxxxxxxxx --0-2043747109-1106274159=:61554 Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 8bit Hello Sir: I config IBM j323 engine as endpoint, when without using gatekeeper, I can call by IP address, after config gatekeeper, it didn't work, my gatekeeper config file using default value. Thanks Stewart Nelson to remind me should post specifically information on mailing list. I really don't know how to solve these problem, it seems that the j323 engine doesn't see the openh323gk! Thanks any suggestion! sincerely suhaoyuan (1)I set following j323 engine properties in file named properties.cfg : <1>h323.endpoint.gatekeeper.host=192.168.0.51; (at this IP address, I config openh323gk ok); <2>h323.endpoint.gatekeeper.port=1719; <3>h323.endpoint.signaling.port=1720 (2)my development environment is : <1>OS: windows XP; <2>j323 engine version : 5.0.0; <3>openh323gk version : 2.2.1; (3)j323 engine throw following exception : ERROR [H.323] Could not register with gatekeeper Exception: No gatekeeper responded to RegistrationRequest or GatekeeperRequest java.lang.Exception: No gatekeeper responded to RegistrationRequest or GatekeeperRequest at com.ibm.h323.gk.client.RasService.expired(RasService.java:275) at com.ibm.h323.gk.client.Sender.resend(Sender.java:122) at com.ibm.h323.gk.client.Sender.run(Sender.java:68) at java.lang.Thread.run(Thread.java:536) (4)gnugatekeeper trace message is : 2001/01/05 01:02:33.847 2 RasSrv.cxx(168) RAS Read from 192.16 8.0.50:1338 2001/01/05 01:02:33.847 3 RasSrv.cxx(207) RAS gatekeeperRequest { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1336 } endpointType = { nonStandardData = { nonStandardIdentifier = object 1.3.6.1.4.1.2.8803 data = 0 octets { } } vendor = { vendor = { t35CountryCode = 181 t35Extension = 0 manufacturerCode = 16962 } productId = 45 octets { 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine } versionId = 5 octets { 35 2e 30 2e 30 5.0.0 } } terminal = { } mc = TRUE undefinedNode = FALSE } endpointAlias = 1 entries { [0]=dialedDigits "010*0*040," } } 2001/01/05 01:02:33.927 1 RasSrv.cxx(328) RAS GRQ Received 2001/01/05 01:02:33.937 3 gkauth.h(845) GKAUTH default GRQ chec k ok 2001/01/05 01:02:33.947 2 RasSrv.cxx(373) GCF|192.168.0.50|010*0*0 40,:dialedDigits|terminal; 2001/01/05 01:02:33.947 3 RasSrv.cxx(219) RAS Send to 192.168. 0.50:1338 gatekeeperConfirm { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 gatekeeperIdentifier = 10 characters { 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323 0047 004b GK } rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1719 } } 2001/01/05 01:02:38.844 2 RasSrv.cxx(168) RAS Read from 192.16 8.0.50:1338 2001/01/05 01:02:38.854 3 RasSrv.cxx(207) RAS gatekeeperRequest { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1336 } endpointType = { nonStandardData = { nonStandardIdentifier = object 1.3.6.1.4.1.2.8803 data = 0 octets { } } vendor = { vendor = { t35CountryCode = 181 t35Extension = 0 manufacturerCode = 16962 } productId = 45 octets { 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine } versionId = 5 octets { 35 2e 30 2e 30 5.0.0 } } terminal = { } mc = TRUE undefinedNode = FALSE } endpointAlias = 1 entries { [0]=dialedDigits "010*0*040," } } 2001/01/05 01:02:38.944 1 RasSrv.cxx(328) RAS GRQ Received 2001/01/05 01:02:38.944 3 gkauth.h(845) GKAUTH default GRQ chec k ok 2001/01/05 01:02:38.954 2 RasSrv.cxx(373) GCF|192.168.0.50|010*0*0 40,:dialedDigits|terminal; 2001/01/05 01:02:38.964 3 RasSrv.cxx(219) RAS Send to 192.168. 0.50:1338 gatekeeperConfirm { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 gatekeeperIdentifier = 10 characters { 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323 0047 004b GK } rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1719 } } 2001/01/05 01:02:43.861 2 RasSrv.cxx(168) RAS Read from 192.16 8.0.50:1338 2001/01/05 01:02:43.871 3 RasSrv.cxx(207) RAS gatekeeperRequest { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1336 } endpointType = { nonStandardData = { nonStandardIdentifier = object 1.3.6.1.4.1.2.8803 data = 0 octets { } } vendor = { vendor = { t35CountryCode = 181 t35Extension = 0 manufacturerCode = 16962 } productId = 45 octets { 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine } versionId = 5 octets { 35 2e 30 2e 30 5.0.0 } } terminal = { } mc = TRUE undefinedNode = FALSE } endpointAlias = 1 entries { [0]=dialedDigits "010*0*040," } } 2001/01/05 01:02:43.952 1 RasSrv.cxx(328) RAS GRQ Received 2001/01/05 01:02:43.952 3 gkauth.h(845) GKAUTH default GRQ chec k ok 2001/01/05 01:02:43.962 2 RasSrv.cxx(373) GCF|192.168.0.50|010*0*0 40,:dialedDigits|terminal; 2001/01/05 01:02:43.972 3 RasSrv.cxx(219) RAS Send to 192.168. 0.50:1338 gatekeeperConfirm { requestSeqNum = 17666 protocolIdentifier = 0.0.8.2250.0.4 gatekeeperIdentifier = 10 characters { 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323 0047 004b GK } rasAddress = ipAddress { ip = 4 octets { c0 a8 00 32 ...2 } port = 1719 } } --------------------------------- Do You Yahoo!? 150万曲MP3疯狂搜,带您闯入音乐殿堂 美女明星应有尽有,搜遍美图、艳图和酷图 1G就是1000兆,雅虎电邮自助扩容! --0-2043747109-1106274159=:61554 Content-Type: text/html; charset=gb2312 Content-Transfer-Encoding: 8bit <DIV>Hello Sir:<BR> I config IBM j323 engine as endpoint, when without using gatekeeper, I can call by IP address, after config gatekeeper, it </DIV> <DIV>didn't work, my gatekeeper config file using default value.<BR> Thanks Stewart Nelson to remind me should post specifically information on mailing list.<BR> I really don't know how to solve these problem, it seems that the j323 engine doesn't see the openh323gk!<BR> Thanks any suggestion!<BR> sincerely<BR> suhaoyuan</DIV> <DIV> (1)I set following j323 engine properties in file named properties.cfg : <BR> <1>h323. endpoint.gatekeeper.host=192.168.0.51; (at this IP address, I config openh323gk ok);<BR> <2>h323.endpoint.gatekeeper.port=1719;<BR> <3>h323.endpoint.signaling.port=1720</DIV> <DIV> <BR> (2)my development environment is :<BR> <1>OS: windows XP;<BR> <2>j323 engine version : 5.0.0;<BR> <3>openh323gk version : 2.2.1;</DIV> <DIV> (3)j323 engine throw following exception : <BR> ERROR [H.323] Could not register with gatekeeper<BR> Exception: No gatekeeper responded to RegistrationRequest or GatekeeperRequest<BR> java.lang.Exception: No gatekeeper responded to RegistrationRequest or GatekeeperRequest at &nbs p; </DIV> <DIV>com.ibm.h323.gk.client.RasService.expired(RasService.java:275)  ;at &nb sp; </DIV> <DIV>com.ibm.h323.gk.client.Sender.resend(Sender.java:122) at<BR>&n bsp; com.ibm.h323.gk.client.Sender.run(Sender.java:68) at &nb sp; java.lang.Thread.run(Thread.java:536) <BR> </DIV> <DIV> (4)gnugatekeeper trace message is : <BR>2001/01/05 01:02:33.847 2   ; RasSrv.cxx(168) RAS Read from 192. 16<BR>8.0.50:1338<BR>2001/01/05 01:02:33.847 3   ; RasSrv.cxx(207) RAS<BR>gatekeeperRequest {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1336<BR> }<BR> endpointType = {<BR> nonStandardData = {<BR> nonStandardIdentifier = object 1.3.6.1.4.1.2.8803<BR> data = 0 octets {</DIV> <DIV> }<BR> }<BR> vendor = {<BR> vendor = {<BR> t35CountryCode = 181<BR> t35Extension = 0<BR> manufacturerCode = 16962<BR> }<BR> productId = 45 octets {<BR> 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi<BR> 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB<BR> 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine<BR> }<BR> versionId = 5 octets {<BR> 35 2e 30 2e 30 &nbs p; &nbs p; &nbs p; 5.0.0<BR> }<BR> }<BR> terminal = {<BR> }<BR> mc = TRUE<BR> undefinedNode = FALSE<BR> }<BR> endpointAlias = 1 entries {<BR> [0]=dialedDigits "010*0*040, "<BR> }<BR> }<BR>2001/01/05 01:02:33.927 1   ; RasSrv.cxx(328) RAS GRQ Received<BR>2001/01/05 01:02:33.937 3   ; gkauth.h(845) GKAUTH default GRQ chec<BR>k ok<BR>2001/01/05 01:02:33.947 2   ; RasSrv.cxx(373) GCF|192.168.0.50|010*0*0<BR>40,:dialedDigits|terminal;<BR>2001/01/05 01:02:33.947 3   ; RasSrv.cxx(219) RAS Send to 192.168.<BR>0.50:1338<BR>gatekeeperConfirm {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> gatekeeperIdentifier = 10 characters {<BR> 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323<BR> 0047 004b &n bsp; &n bsp; GK<BR> }<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1719<BR> }<BR> }<BR>2001/01/05 01:02:38.844 2   ; RasSrv.cxx(168) RAS Read from 192. 16<BR>8.0.50:1338<BR>2001/01 /05 01:02:38.854 3   ; RasSrv.cxx(207) RAS<BR>gatekeeperRequest {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1336<BR> }<BR> endpointType = {<BR> nonStandardData = {<BR> nonStandardIdentifier = object 1.3.6.1.4.1.2.8803<BR> data = 0 octets {</DIV> <DIV> }<BR> }<BR> vendor = {<BR> vendor = {<BR> t35CountryCode = 181<BR> t35Extension = 0<BR> manufacturerCode = 16962<BR> }<BR> productId = 45 octets {<BR> 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi<BR> 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB<BR> 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine<BR> }<BR> versionId = 5 octets {<BR> 35 2e 30 2e 30 &nbs p; &nbs p; &nbs p; 5.0.0<BR> }<BR> }<BR> terminal = {<BR> }<BR> mc = TRUE<BR> undefinedNode = FALSE<BR> }<BR> endpointAlias = 1 entries {<BR> [0]=dialedDigits "010*0*040, "<BR> }<BR> }<BR>2001/01/05 01:02:38.944 1   ; RasSrv.cxx(328) RAS GRQ Received<BR>2001/01/05 01:02:38.944 3   ; gkauth.h(845) GKAUTH default GRQ chec<BR>k ok<BR>2001/01/05 01:02:38.954 2   ; RasSrv.cxx(373) GCF|192.168.0.50|010*0*0<BR>40,:dialedDigits|terminal;<BR>2001/01/05 01:02:38.964 3   ; RasSrv.cxx(219) RAS Send to 192.168.<BR>0.50:1338<BR>gatekeeperConfirm {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> gatekeeperIdentifier = 10 characters {<BR> 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323<BR> 0047 004b &n bsp; &n bsp; GK<BR> }<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1719<BR> }<BR> }<BR>2001/01/05 01:02:43.861 2   ; RasSrv.cxx(168) RAS Read from 192. 16<BR>8.0.50:1338<BR>2001/01 /05 01:02:43.871 3   ; RasSrv.cxx(207) RAS<BR>gatekeeperRequest {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1336<BR> }<BR> endpointType = {<BR> nonStandardData = {<BR> nonStandardIdentifier = object 1.3.6.1.4.1.2.8803<BR> data = 0 octets {</DIV> <DIV> }<BR> }<BR> vendor = {<BR> vendor = {<BR> t35CountryCode = 181<BR> t35Extension = 0<BR> manufacturerCode = 16962<BR> }<BR> productId = 45 octets {<BR> 41 6c 70 68 61 57 6f 72 6b 73 20 45 64 69 74 69 AlphaWorks Editi<BR> 6f 6e 20 70 6f 77 65 72 65 64 20 62 79 20 49 42 on powered by IB<BR> 4d 20 4a 33 32 33 20 45 6e 67 69 6e 65 M J323 Engine<BR> }<BR> versionId = 5 octets {<BR> 35 2e 30 2e 30 &nbs p; &nbs p; &nbs p; 5.0.0<BR> }<BR> }<BR> terminal = {<BR> }<BR> mc = TRUE<BR> undefinedNode = FALSE<BR> }<BR> endpointAlias = 1 entries {<BR> [0]=dialedDigits "010*0*040, "<BR> }<BR> }<BR>2001/01/05 01:02:43.952 1   ; RasSrv.cxx(328) RAS GRQ Received<BR>2001/01/05 01:02:43.952 3   ; gkauth.h(845) GKAUTH default GRQ chec<BR>k ok<BR>2001/01/05 01:02:43.962 2   ; RasSrv.cxx(373) GCF|192.168.0.50|010*0*0<BR>40,:dialedDigits|terminal;<BR>2001/01/05 01:02:43.972 3   ; RasSrv.cxx(219) RAS Send to 192.168.<BR>0.50:1338<BR>gatekeeperConfirm {<BR> requestSeqNum = 17666<BR> protocolIdentifier = 0.0.8.2250.0.4<BR> gatekeeperIdentifier = 10 characters {<BR> 004f 0070 0065 006e 0048 0033 0032 0033 OpenH323<BR> 0047 004b &n bsp; &n bsp; GK<BR> }<BR> rasAddress = ipAddress {<BR> ip = 4 octets {<BR> c0 a8 00 32 &nbs p; &nbs p; &nbs p; ...2<BR> }<BR> port = 1719<BR> }<BR> }<BR></DIV><p><br><hr size=1><b>Do You Yahoo!?</b><br> <a href="http://music.yisou.com" target=blank>150万曲MP3疯狂搜,带您闯入 音乐殿堂</a><br><a href="http://image.yisou.com" target=blank>美女明星应 有尽有,搜遍美图、艳图和酷图</a><br> <a href="http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/ev ent/mail_1g/" target=blank>1G就是1000兆,雅虎电邮自助扩容!</a> --0-2043747109-1106274159=:61554-- --__--__-- _______________________________________________ Openh323gk-users mailing list Openh323gk-users@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/openh323gk-users End of Openh323gk-users Digest ------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________________ List: Openh323gk-users@xxxxxxxxxxxxxxxxxxxxx Archive: http://sourceforge.net/mailarchive/forum.php?forum_id?9 Homepage: http://www.gnugk.org/