Tagged Questions

0
votes
3answers
51 views

Simple interface for getting HTML content in Boost.Asio

There are a lot of examples how to make HTTP request to a server and get reply via boost.asio library. However, I couldn't find a good example of simple interface and wondering, if …
3
votes
3answers
526 views

How do I perform a nonblocking read using asio?

I am attempting to use boost::asio to read and write from a device on a serial port. Both boost::asio:read() and boost::asio::serial_port::read_some() block when there is nothing t …
1
vote
1answer
66 views

Boost: how do we specify “any port” for a TCP server?

How can I specify "pick any available port" for a TCP based server in Boost? And how do I retrieve the port once a connection is accepted? UPDATED: By "available port" I mean: t …
2
votes
1answer
75 views

Boost.Asio documentation is non-existent. What do these errors mean?

I'm struggling with two errors with Boost.Asio. The first occurs when I try to receive data on a socket: char reply[1024]; boost::system::error_code error; size_t reply_length = …
1
vote
2answers
42 views

Problem with libraries using winsock.h

Hello Everyone! I have a project that uses Boost.Asio and the Media-Decoding-Samples that come with the Intel IPP-Library. The problem is the following. If I compile the project w …
0
votes
1answer
49 views

getting an error of “Service not found” in a async_resolve handler

I have code that looks like the following: //unrelated code snipped resolver.reset(new tcp::resolver(iosvc)); tcp::resolver::query query(host, port); resolver->async_resolve(qu …
2
votes
1answer
96 views

How should one tear down a boost::asio::ip::udp::socket?

I have read the boost asio reference, gone through the tutorial and looked at some of the examples. Still, I am unable to see how a socket should be torn down: Should I call clos …
13
votes
4answers
3k views

Best documentation for Boost:asio ?

The documentation available on the boost website is... limited. From what I've been able to read, the general consensus is that it is simply difficult to find good documentation o …
1
vote
1answer
88 views

How to create a Boost.Asio socket from a native socket?

I am merely trying to create a boost ip::tcp::socket from an existing native socket. In the assign function, the first parameter must be a "protocol_type" and the second must be a …
0
votes
1answer
125 views

Boost Asio async_read doesn’t stop reading?

So, I've been playing around with the Boost asio functions and sockets (specifically the async read/write). Now, I thought that boost::asio::async_read only called the handler wh …
0
votes
2answers
65 views

Is it possible to wrap boost sockets with Pimpl?

Hi, in a project we want to wrap the Boost Asio socket in a way, that the using class or the wrapping .h does not have to include the boost headers. We usually use pointers and f …
0
votes
3answers
225 views

boost::asio::ip::tcp::socket is connected?

I want to verify the connection status before realize my operations (read/write). Is there a way to make an isConnect() method? I saw this, but it seems "ugly". I tested is_open …
3
votes
1answer
1k views

How to get IP addresss of boost::asio::ip::tcp::socket?

Hello, I'm writing a server in C++ using Boost ASIO library. I'd like to get the string representation of client IP to be shown in my server's logs. Does anyone know how to do it?
2
votes
1answer
141 views

boost.asio, how to read a complete IP packet using asio

hello, I would like to use a function which reads on a socket port, and gives back the control whenever an IP packet is received. the boost::asio::ip::udp::socket has a function …
1
vote
1answer
246 views

Problem Linking Boost Library in Linux

I am trying to build a project using Boost's Asio and I am having some trouble. Initially, I tried to build the project without any additional libraries since everything is suppos …

1 2 3 4 5 next
15 30 50 per page