RE: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Alfred Reynolds
There is no info query for Source right now, that is being reinterpreted as a ping request and you get a A2A_ACK as a response. The other values should all be 0x0, you sure you got the packet dump right? Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul

RE: [hlds_apps] Source RCON format

2004-08-24 Thread Alfred Reynolds
Okay, I spent a few minutes and whipped up a sample RCON client implementation. This is ugly, ugly code but it should compile for linux users. Win32 people need to do the WSAStartup() dance amongst other things. In response to an auth request I see: Sending packet (18 bytes) Got 28 bytes from

[hlds_apps] Where is logaddress on source ds

2004-08-24 Thread BrOk3R
Ok, Once I have already leared the rcon format I have another question. ¿Where is logaddress on source ds? ¿Is it implemented? ___ hlds_apps mailing list [EMAIL PROTECTED] http://list.valvesoftware.com/mailman/listinfo/hlds_apps

[hlds_apps] Kontrol 2.0 sourcecode release

2004-08-24 Thread Kris Sum
I've just released the source code to my HL multiple server administration tool Kontrol 2 ( http://www.kquery.com/index.php?page=software_infosubpage=1id=4 ) to the world with no restraining license. For more information on the Delphi 7 source, check out this forum post.

Re: [hlds_apps] Kontrol 2.0 sourcecode release

2004-08-24 Thread Steven Hartland
Sweet kris thanks for that. Im sure I'll have cause to look at that at some point :) Steve / K - Original Message - From: Kris Sum [EMAIL PROTECTED] I've just released the source code to my HL multiple server administration tool Kontrol 2 (

RE: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Paul Kirby
Here look at a quick php script that I have written which queries my LAN Server. http://users.initcorp.co.uk/paulk/HL2SInfo/hl2sinfo.php You can select what query you want from the list. It debugs what it sends and also what it reads back. And as you will see it returns back the following when

Re: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Cory Nelson
It looks like it doesn't recognize the info query, so it just responds with a ping. You can send \xFF\xFF\xFF\xFFT and it will give an info-like response (dev.kquery.com has it pretty well documented). If you can understand C, I have some code that uses it in CVS right now:

RE: [hlds_apps] Source RCON format

2004-08-24 Thread Alfred Reynolds
The server only runs on x86 hardware so no need to convert endian-ness (is that a word?) of the data. - Alfred Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Beranek Sent: Tuesday, August 24, 2004 1:55 AM To: [EMAIL PROTECTED] Subject: Re:

RE: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Alfred Reynolds
After reading the code more carefully it is sending ascii '0' in that response. I will check with the guy who wrote that code if he really meant to do that. - Alfred Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Kirby Sent: Tuesday, August 24, 2004

RE: [hlds_apps] Source RCON format

2004-08-24 Thread Alfred Reynolds
Okay, let me rephrase that, always use little endian for your type representation. The code I sent around had the ugly ugly disclaimer meaning I spent 10 minutes writing it, issues like endianness (or even how to effectively read the data response) were left out of the implementation. - Alfred

RE: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Paul Kirby
I know all that, already, it was just where Alfred send it sends 0x00 and I get ascii 0 that's all. Paul Kirby -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cory Nelson Sent: Tue 24 August 2004 18:17 To: [EMAIL PROTECTED] Subject: Re:

RE: [hlds_apps] Server Query Protocol Question?

2004-08-24 Thread Paul Kirby
Yes, That's what I am trying to say :) And I use that response to indicate that it is a HL2 Server and I can then get it to use the relevent functions for that type of server :) Paul Kirby -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alfred