A downloadable tool for Windows

Buy Now$9.99 USD or more

UDPS is a zero-bloat, simple and efficient DLL to send/receive reliable or unreliable data over UDP.

The library has just 4 functions: start/send/read/stop, so it's easy to understand and use.

The protocol is extremely lean, it adds just 6 bytes to each datagram.

Internal architecture is built on top of I/O Completion Ports and tries to avoid memory copy as much as possible.

It provides a clean separation from user code via its own thread and an internal queue, so you can take your time processing the requests without causing delays in sending or receiving.

Example:

 udps_start("");
 udps_req req;
 int result = req.send("11.22.33.44", buffer, size);
 if(!result) printf("\nError: %s.", req.error());
 udps_stop();

DLL size is just 24 Kb :)


USend

As an example of how to use it, a useful command-line tool with the source code is included.

It can send or receive files directly from the command line and provides much simpler and faster workflow compared to something like FTP:

 usend.exe /s 11.22.33.44 file.dat

And on another machine you run:

 usend.exe /r

to receive the file. Very simple. (You might need to open UDP port 8583).

USend can also be added to the SentTo context menu and then you can send any file right from the Windows Explorer.

Purchase

Buy Now$9.99 USD or more

In order to download this tool you must purchase it at or above the minimum price of $9.99 USD. You will get access to the following files:

udps.zip 52 kB

Leave a comment

Log in with itch.io to leave a comment.