https://github.com/flexoid/simple-chat
Chat program based on self-developed Simple Chat protocol
https://github.com/flexoid/simple-chat
Last synced: 5 months ago
JSON representation
Chat program based on self-developed Simple Chat protocol
- Host: GitHub
- URL: https://github.com/flexoid/simple-chat
- Owner: flexoid
- Created: 2011-12-29T14:05:05.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-29T14:39:17.000Z (over 14 years ago)
- Last Synced: 2024-10-12T07:48:56.386Z (over 1 year ago)
- Language: Pascal
- Homepage:
- Size: 211 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
## Chat program based on self-developed Simple Chat protocol.
## Protocol description
### Client -> Server direction
* Establish a connection.
`$u `
* Enter the room
`$j `
* Exit the room
`$p `
* Send message to the room
`$m `
* Send message to another client
`$m `
* Get the information about client
`$i `
### Server -> Client direction
* Notifycation about entrance to the room
`$n `
* Notifycation about leaving the room
`$p `
* List of the clients in the room
`$l … `
* Message delivery
`$m `
`$m `
* Error
`$e `
* Sending information about the client
`$i []`