Recommend this page to a friend! |
Download .zip |
Info | View files (15) | Download .zip | Reputation | Support forum (1) | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2008-08-06 (8 years ago) | 65% | Total: 962 This week: 1 | All time: 3,610 This week: 1,047 |
Version | License | PHP version | Categories | |||
valve_rcon 1.0 | GNU General Publi... | 5.0 | Networking, PHP 5, Games |
Description | Author | ||||||||||||||
This class can be used to manage game servers using a remote console via TCP and UDP. |
|
Valve RCON Class. ------------------- Version 1.0 Author: Shannon Wynter (http://fremnet.net/contact) Copyright (C) Shannon Wynter & Fremnet.net License: GPL 2.0 or greater The php5 version of my original RCON class for making use of the remote console facilities on various game servers. Basic Synapsis: ------------------- There are two ways to use this class, one is the more traditional lazy method as implemented by other functions/classes availible on the net, the other is a stricter method that requires you to do your own connecting and authenticating. There is a performance penalty for using the traditional method over multiple commands in that it has to connect, and authenticate every single time. So my general advice, use the general usage method as described below if you have to execute more then a couple of commands ** General Usage: include('valve_rcon.php'); $r = new Valve_RCON('secret', '121.45.193.22', 27015, Valve_RCON::PROTO_SOURCE); $r->connect(); $r->authenticate(); print $r->execute('status'); print $r->execute('kick user'); $->disconnect(); ** Traditional Lazy Usage: include('valve_rcon.php'); $r = new Valve_RCON('secret', '121.45.193.22', 27015, Valve_RCON::PROTO_SOURCE); print $r->execute('status'); Full Documentation: ------------------- You can generate full documentation by making sure you have phpDocumentor installed and running the document.sh file found in this directory License: ------------------- This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. |
Files |
File | Role | Description | ||
---|---|---|---|---|
doc (7 files, 2 directories) | ||||
example (1 file) | ||||
document.sh | Data | Documentation Generator | ||
README | Doc. | Readme file | ||
valve_rcon.php | Class | The Valve_RCON class |
Files | / | doc |
File | Role | Description | ||
---|---|---|---|---|
Fremnet (1 directory) | ||||
media (2 files) | ||||
blank.html | Doc. | Documentation | ||
classtrees_Fremnet.html | Doc. | Documentation | ||
elementindex.html | Doc. | Documentation | ||
elementindex_Fremnet.html | Doc. | Documentation | ||
index.html | Doc. | Main Documentation Index | ||
li_Fremnet.html | Doc. | Documentation | ||
packages.html | Doc. | Documentation |
Files | / | doc | / | Fremnet | / | Valve_RCON |
File | Role | Description |
---|---|---|
Valve_RCON.html | Doc. | Documentation |
_valve_rcon.php.html | Doc. | Documentation |
Files | / | doc | / | media |
File | Role | Description |
---|---|---|
banner.css | Data | CSS for Documentation |
stylesheet.css | Data | CSS for Documentation |
Files | / | example |
File | Role | Description |
---|---|---|
example.php | Example | A complete example for both Classic and Source |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
User Ratings | User Comments (1) | ||||||||||||||||||||||||||||||||||
|
|
Applications that use this package |
Games On Net Used by Games On Net for their web based administration tools |
If you know an application of this package, send a message to the author to add a link here.