Skip to content

Instantly share code, notes, and snippets.

@kaimallea
Created November 25, 2014 21:25
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save kaimallea/e112f5c22fe8ca6dc627 to your computer and use it in GitHub Desktop.
Save kaimallea/e112f5c22fe8ca6dc627 to your computer and use it in GitHub Desktop.
Super simple UDP client using boost
#include <iostream>
#include <boost/array.hpp>
#include <boost/asio.hpp>
using boost::asio::ip::udp;
class UDPClient
{
public:
UDPClient(
boost::asio::io_service& io_service,
const std::string& host,
const std::string& port
) : io_service_(io_service), socket_(io_service, udp::endpoint(udp::v4(), 0)) {
udp::resolver resolver(io_service_);
udp::resolver::query query(udp::v4(), host, port);
udp::resolver::iterator iter = resolver.resolve(query);
endpoint_ = *iter;
}
~UDPClient()
{
socket_.close();
}
void send(const std::string& msg) {
socket_.send_to(boost::asio::buffer(msg, msg.size()), endpoint_);
}
private:
boost::asio::io_service& io_service_;
udp::socket socket_;
udp::endpoint endpoint_;
};
int main()
{
boost::asio::io_service io_service;
UDPClient client(io_service, "localhost", "1337");
client.send("Hello, World!");
}
@SergioSV96
Copy link

Isn't this an UDP Server?

@kaimallea
Copy link
Author

Hi, it's a client

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment