Skip to content

Commit

Permalink
Added note about rust rcon. See issues #86 and #87.
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Ibasco <[email protected]>
  • Loading branch information
ribasco committed Jun 28, 2022
1 parent 0dec988 commit d915b9e
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions site/markdown/examples/source_rcon_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

1. [Failsafe Features](#failsafe-features)
2. [Examples](#examples)
1. [Authentication](#authentication)
2. [Commands](#commands)
3. [Invalidating credentials](#invalidating-credentials)
4. [Cleanup Connections](#cleaning-up-active-connections)
5. [Display connection statistics](#display-connection-statistics)
6. [Providing your own custom CredentialsStore implementation](#providing-your-own-custom-credentialsstore-implementation)
7. [Compatibility with non-source games](#compatibility-with-non-source-games)
1. [Authentication](#authentication)
2. [Commands](#commands)
3. [Invalidating credentials](#invalidating-credentials)
4. [Cleanup Connections](#cleaning-up-active-connections)
5. [Display connection statistics](#display-connection-statistics)
6. [Providing your own custom CredentialsStore implementation](#providing-your-own-custom-credentialsstore-implementation)
7. [Compatibility with non-source games](#compatibility-with-non-source-games)
3. [Note about Rust RCON](#rust-rcon-support)

#### About this module

Expand Down Expand Up @@ -300,4 +301,12 @@ class NonSourceBasedGames {
}

}
```
```

#### Rust Rcon Support

To make this library work with rust, please ensure that you start the server with ` "+rcon.web 0"` to enable legcy mode.

It's also worth noting that Facepunch will eventually [remove](https://github.com/Facepunch/webrcon) legacy mode (source protocol implementation) sometime in the future and will be replaced by their websockets implementation as the default.

Currently, there are no plans to support the web sockets version.

0 comments on commit d915b9e

Please sign in to comment.