Skip to content

Flashdown/udpsend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Windows Debian macOS Build udpsend Github All Releases Latest release

udpsend

udpsend is a simple udp sender tool written in C++ that allows to send a string or message via UDP to a specific IP and port.

udpsend v0.6 - Download latest binary releases

interactive Usage:

you can enter the message interactivly by simply not passing the <message> argument:

udpsend <server> <port> 

Normal Usage:

udpsend <server> <port> <message>

Example sending a string:

udpsend myinvalidserver.invalid 1234 HelloWorld

Example sending a message:

udpsend myinvalidserver.invalid 1234 "Hello World, does anyone read me?"
  • server: IPv4, IPv6 address or FQDN
  • port: Port number to send the message to
  • message: Message to send via UDP