Removed mention of versioning.
This commit is contained in:
parent
5985f63744
commit
cd32995367
1 changed files with 6 additions and 6 deletions
12
Protocol.md
12
Protocol.md
|
@ -1,10 +1,10 @@
|
||||||
# Sock Chat Protocol Information
|
# Sock Chat Protocol Information
|
||||||
The protocol operates on a websocket in text mode. Messages sent between the client and server are a series of concatenated strings delimited by the vertical tab character, represented in most languages by the escape sequence `\t` and defined in ASCII as `0x09`.
|
The Sock Chat protocol operates on a websocket in text mode.
|
||||||
The first string in this concatenation must be the packet identifier, sent as an `int`.
|
Messages sent between the client and server are a series of concatenated strings delimited by the vertical tab character, represented in most languages by the escape sequence `\t` and defined in ASCII as `0x09`.
|
||||||
|
The first string in this concatenation must be the packet identifier.
|
||||||
|
|
||||||
Newer versions of the protocol are implemented as extensions, a client for Version 1 should have no trouble using a server built for Version 2 as long as authentication is understood.
|
Updated behaviour is defined through capabilities.
|
||||||
|
Further documentation on their behaviour will be added at a later date.
|
||||||
The current stable version of the protocol is **Version 1**.
|
|
||||||
|
|
||||||
|
|
||||||
## Types
|
## Types
|
||||||
|
@ -717,7 +717,7 @@ Informs the client that they have either been banned or kicked from the server.
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>timestamp</code></td>
|
<td><code>timestamp</code></td>
|
||||||
<td>Ban expiration time</td>
|
<td>Ban expiration time, not present when the first argument is <code>0</code>.</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Reference in a new issue