8000 GitHub - zuzuleinen/shout-server: Simple UDP shout server implemented with system calls
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zuzuleinen/shout-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

shout-server

This is a simple UDP echo server written in Go using low-level system calls via the syscall package.

It listens on port 7777, receives messages, converts them to uppercase, and sends them back to the sender.

Test

Start the server:

go run .

Send a message via UDP to server with netcat:

nc -u 127.0.0.1 7777
hey
HEY
hello
HELLO

About

Simple UDP shout server implemented with system calls

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0