https://github.com/antelman107/go-simple-tcp-chat
Simple TCP chat on GO
https://github.com/antelman107/go-simple-tcp-chat
broadcast chat golang syncmap tcp tcp-chat
Last synced: 3 months ago
JSON representation
Simple TCP chat on GO
- Host: GitHub
- URL: https://github.com/antelman107/go-simple-tcp-chat
- Owner: antelman107
- Created: 2020-04-02T09:33:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-24T12:47:55.000Z (about 6 years ago)
- Last Synced: 2023-03-21T20:45:17.433Z (about 3 years ago)
- Topics: broadcast, chat, golang, syncmap, tcp, tcp-chat
- Language: Go
- Homepage: https://golangforall.com/en/post/golang-tcp-server-chat.html
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Simple TCP chat
Simple tcp server that accepts connections and resend
any incoming messages to all connected clients.
sync.Map is used to store connections.
Further implementation details in the article - https://golangforall.com/en/post/golang-tcp-server-chat/.