Tagged Questions

Most programs interact with the outside world in some way, whether it be via a file, a network, a serial cable, or the console. Sometimes, as is the case with networking, individual I/O operations can take a long time to complete. This poses particular challenges to application development. The Boost.Asio library is intended for programmers using C++ for systems programming, where access to operating system functionality such as networking is often requ...

learn more… | top users | synonyms

46
votes
6answers
18k 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 on the boost::asio ...
16
votes
2answers
4k views

Whats the deal with boost.asio and file i/o?

I've noticed that boost.asio has a lot of examples involving sockets, serial ports, and all sorts of non-file examples. Google hasn't really turned up a lot for me that mentions if asio is a good or ...
14
votes
2answers
2k views

Which boost libraries are heading for TR2?

If found this quote at boost.org: More Boost libraries are in the pipeline for TR2 It links to the TR2 call from proposals. But I can't seem to find any other information on which boost ...
13
votes
3answers
4k views

How to integrate Boost.Asio main loop in GUI framework like Qt4 or GTK

Is there any way to integrate Boost.Asio with Qt4 (prefered) or GTK main loop? GTK provides poll(2) like API so technically is should be possible. Qt provides its own networking layer, however I ...
12
votes
1answer
6k views

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

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?
11
votes
3answers
5k views

Boost.ASIO-based HTTP client library (like libcurl)

I am looking for a modern C++ HTTP library because libcurl's shortcomings are difficult to work around by C++ wrappers. Solutions based on Boost.ASIO, which has become the de-facto C++ TCP library, ...
11
votes
2answers
599 views

What's the best way of ensuring valid object lifespan when using Boost.Asio?

Been playing a lot with Boost.Asio of late. I like the library a lot since it offers a fantastic way to squeeze performance out of today's multicore systems. A question I have asked myself a few ...
10
votes
2answers
366 views

Boost.asio & UNIX signal handling

Preface I have a multi-threaded application running via Boost.Asio. There is only one boost::asio::io_service for the whole application and all the things are done inside it by a group of threads. ...
10
votes
3answers
803 views

alternatives to std::string to use with boost::asio

boost::asio's various read and write functions and methods accept boost::asio::buffer. According to buffer's documentation, a mutable std::string cannot be wrapped in boost::asio::buffer, and thus ...
10
votes
2answers
8k 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 supposedly in the header ...
10
votes
7answers
3k views

Asynchronous Mysql connector for C++ or C

Does there exist any asynchronous connectors to Mysql that can be used in C or C++? I'm looking for something that can be plugged into a reactor pattern written in Boost.Asio. [Edit:] Running a ...
9
votes
2answers
3k views

How to create a boost ssl iostream?

I'm adding HTTPS support to code that does input and output using boost tcp::iostream (acting as an HTTP server). I've found examples (and have a working toy HTTPS server) that do SSL input/output ...
8
votes
6answers
456 views

Creating a high-performance network server in C++

I need to create a network server in C++ for a trading application. This network server needs to perform the following tasks: handle authentication of clients and provide session id for each ...
8
votes
1answer
180 views

Implementing a good C++0x error_condition?

I try to figure out how the new system_error together with error_code, error_category and not the least the (meant to implement portable error reporting) error_condition should be used. I think by ...
8
votes
1answer
532 views

Boost ASIO - how to turn URL into IP adress?

So I need some way of turning given Protocol://URLorIP:Port string into string ip int port How to do such thing with boost ASIO and Boost Regex? Or is it possible - to get IP using C++ Net Lib (boost ...
8
votes
4answers
7k views

Copy a streambuf's contents to a string

Apparently boost::asio::async_read doesn't like strings, as the only overload of boost::asio::buffer allows me to create const_buffers, so I'm stuck with reading everything into a streambuf. Now I ...
7
votes
2answers
172 views

Getting to know the basics of Asynchronous programming on *nix

For some time now I have been googling a lot to get to know about the various ways to acheive asynchronous programming/behavior on nix machines and ( as known earlier to me ) got confirmed on the fact ...
7
votes
2answers
202 views

Where to implement a protocol using boost::asio?

I am trying to implement a simple serial port protocol. It goes like this: discard all data until 0xff is received read header (node address and data length, 4 bytes) read data (max. 64 bytes) read ...
7
votes
2answers
122 views

How do I prevent SIGPIPE when using boost::asio?

I'm using a pipe to communicate between two processes on Gnu/Linux. The receiving end closes the pipe while the sending end is still trying to send data. Here is some code that emulates the ...
7
votes
1answer
1k views

Boost asio - problem stopping io_service

I'm using boost::asio to do some very basic UDP packet collection. The io_service object is instantiated in a worker thread, and io_service.run() is called from inside that thread. My problem is ...
7
votes
1answer
1k views

Async wait on file descriptor using Boost Asio

I'm trying to integrate D-Bus with my boost::asio application. D-Bus has an API that enumerates a set of Unix file descriptors (mainly sockets but could also be FIFOs) to be watched. When those ...
7
votes
1answer
2k views

C++ Boost ASIO: how to read/write with a timeout?

From reading other Stackoverflow entries and the boost::asio documentation, I've confirmed that there is no synchronous asio read/write calls that also provide an easy-to-use timeout as a parameter to ...
7
votes
3answers
4k views

Get Local IP-Address using Boost.Asio

I'm currently searching for a portable way of getting the local IP-addresses. Because I'm using Boost anyway I thought it would be a good idea to use Boost.Asio for this task. There are serveral ...
7
votes
1answer
1k 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 "native_type", but ...
7
votes
7answers
10k views

How to set a timeout on blocking sockets in boost asio?

Is there a way to cancel a pending operation (without disconnect) or set a timeout for the boost library functions? I.e. I want to set a timeout on blocking socket in boost asio? ...
6
votes
0answers
133 views

Should std::bind be compatible with boost::asio?

I am trying to adapt one of the boost::asio examples to use c++11 / TR1 libraries where possible. The original code looks like this: void start_accept() { tcp_connection::pointer new_connection = ...
6
votes
1answer
243 views

Boost.Asio with google protocol buffers

I've currently investigating ways of improving our current c++ network hand-made serialization mechanism maintaining our existing binary protocol. The first approach taken was to code it using ...
6
votes
3answers
208 views

“Compiler threading support is not turned on.”

Normally I can google my way around and find solutions, but not this time. I'm using 64 bit Linux Ubuntu 11.04 to compile a 32 bit windows application. I'm using i586-mingw32msvc-gcc to compile my ...
6
votes
2answers
158 views

Which `boost::system::error_code` value should be provided when `boost::asio::ip::tcp::resolver::resolve()` fails?

I want to return a boost::system::error_code indicationg whether a host/service could be resolved or not. There might be multiple reasons why a host/service look-up failed (e.g. network connection ...
6
votes
1answer
731 views

HTTPS request with Boost.Asio and OpenSSL

I'm trying to read the ticker symbol at https://mtgox.com/api/0/data/ticker.php from my C++ application. I use Boost.Asio and OpenSSL because the service requires HTTPS. Boost version: 1.47.0 ...
6
votes
2answers
192 views

boost::asio socket async_* strand

How to perform async_* operations on socket through the strand? I've looked at Timer.5 (Boost/Asio examples), but there are only how to invoke user's handler. upd. When I async. write to the socket ...
6
votes
2answers
125 views

Does boost::asio::io_service preserve the order of handlers?

Does boost::asio::io_service guarantee that handlers are called in the same order that they are given via post()? I can't find anything saying this in the documentation. Assume that calls to ...
6
votes
2answers
864 views

Do any boost::asio async calls automatically time out?

I have a client and server using boost::asio asynchronously. I want to add some timeouts to close the connection and potentially retry if something goes wrong. My initial thought was that any time I ...
6
votes
2answers
478 views

How to change serial port speed on the fly with boost::asio (or how to find out if the hardware buffer is empty)?

I'm having a peculiar problem with boost::asio and a boost::asio::serial_port device. The code is finally working pretty well with asynchronous reads and stuff, but I can't figure out how to change ...
6
votes
1answer
661 views

Remove all handlers from a boost::asio::io_service without calling them

I want to remove all handlers from an IO_service right before I reuse it. Is this possible? I'm writing unit tests that involve an asio::io_service. In between each test case I want to clear the ...
6
votes
2answers
670 views

Release socket in Boost.Asio (opposite of assign), or not transfer ownvership

There is a function assign in Boost.Asio sockets, however I'm looking for something like release/unassign that would transfer the ownership on socket back to user. or some type of assign that ...
6
votes
7answers
8k views

Serialize and send a data structure using Boost?

I have a data structure that looks like this: typedef struct { unsigned short m_short1; unsigned short m_short2; unsigned char m_character; } MyDataType; I want to use boost::serialization ...
5
votes
1answer
181 views

Low-latency read of UDP port

I am reading a single data item from a UDP port. It's essential that this read be the lowest latency possible. At present I'm reading via the boost::asio library's async_receive_from method. Does ...
5
votes
2answers
220 views

How to avoid Boost ASIO reactor becoming constrained to a single core?

TL;DR: Is it possible that I am reactor throughput limited? How would I tell? How expensive and scalable (across threads) is the implementation of the io_service? I have a farily massively parallel ...
5
votes
1answer
222 views

Non-threaded alternative to waiting on a condition. (Edit: Proactor pattern with boost.asio?)

I am implementing a message passing algorithm. Messages pass between adjacent nodes when they have enough information at the node to compose the message - information that is passed to the node from ...
5
votes
3answers
686 views

Where can I find a RPC which implemented with: boost + protobuf

Are there any RPC framework implemented with: boost + protobuf? And it has a protobuf plugin can be used to generate RPC code for the framework. Or there are some open source implementations I can ...
5
votes
2answers
734 views

Intermittently no data delivered through boost::asio / io completion port

Problem I am using boost::asio for a project where two processes on the same machine communicate using TCP/IP. One generates data to be read by the other, but I am encountering a problem where ...
5
votes
1answer
334 views

Sharing a boost::asio::io_service object between dynamically loaded libraries

First what I did (minimum sample will be provided if it's not just me doing something plain stupid): I have a GUI application that shall support several network interfaces to change content that's ...
5
votes
4answers
972 views

boost::asio, threads and synchronization

This is somewhat related to this question, but I think I need to know a little bit more. I've been trying to get my head around how to do this for a few days (whilst working on other parts), but the ...
5
votes
2answers
626 views

Using SSL sockets and non-SSL sockets simultaneously in Boost.Asio?

I'm in the process of converting a library to Boost.Asio (which has worked very well so far), but I've hit something of a stumbling block with regards to a design decision. Boost.Asio provides ...
5
votes
2answers
1k views

Address already in use with boost asio acceptor

I wrote a server that is listening for incomming TCP connections and clients connecting to it. When I shut down the server and restart it on the same port, I sometimes get the error message EADDRINUSE ...
5
votes
1answer
175 views

List active handlers in boost io_service

Whilst building unit tests for a client/server system at work, I ran into a problem where my io_service was not releasing after I had shutdown all the active handlers (that I was aware of). After a ...
5
votes
4answers
3k views

boost shared_from_this<>()

could someone summarize in a few succinct words how the boost shared_from_this<>() smart pointer should be used, particularly from the perspective of registering handlers in the io_service using ...
5
votes
2answers
2k views

boost deadline_timer question

I expected the code below to print Hello, world! every 5 seconds, but what happens is that the program pauses for 5 seconds and then prints the message over and over with no subsequent pauses. What ...
5
votes
1answer
1k views

How to program a connection pool?

Is there a known algorithm for implementing a connection pool? If not what are the known algorithms and what are their trade-offs? What design patterns are common when designing and programming a ...

1 2 3 4 5 14