Boost.Asio is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach.
0
votes
1answer
28 views
Serializing binary data in boost fails with `invalid signature' error
I'm having difficulties figuring out correct way of using boost serialization/asio to send objects over network. The message class is as simple as possible. It's not C++ friendly nor suitable for my ...
0
votes
0answers
10 views
autoconf: how to check for presence of #define
I am writing a program that uses boost::asio to access serial ports. According to the documentation, serial port support is available when the BOOST_ASIO_HAS_SERIAL_PORT macro is defined. Since this ...
1
vote
1answer
201 views
How to launch an “event” when my Boost::asio tcp server just start running ( AKA io_service.run() )?
Based on an boost::asio client/server relationship, I have to launch the client program from the server program only when the server thread is in a "waiting to be connected" state.
My question is how ...
1
vote
1answer
54 views
boost::asio read - return after all data where read from socket, without waiting for EOF
I'm quite new to boost::asio, I faced one problem I don't really know how to fix, could you please help me.
In general I'm trying to implement proxy based on boost::asio. I'm using async_read_some ...
1
vote
2answers
1k views
Thread pool using boost asio
I am trying to create a limited thread pool class using boost::asio. But I am stuck at one point can some one help me.
The only problem is the place where I should decrease counter?
code does not ...
2
votes
1answer
27 views
Boost ASIO async_connect succeeds when it should fail, why?
I have a server application in which I accept only one client with boost::asio::ip::tcp::acceptor and async_accept.
I run the client application and successfully connect using a ...
1
vote
1answer
34 views
Boost ASIO: How can a server know if a client is still connected?
I am using boost::asio for a server/client application. The server only accepts one connection at a time. I am wondering what is the best way for the server to verify if the client is still connected. ...
1
vote
1answer
74 views
how to know that no data available on boost::asio::ip::tcp::iostream?
I'm using boost::asio::ip::tcp::iostream to read binary data from TCP stream. I do this like that:
stream.read(reinterpret_cast<char*>(&packetSize), 4); // first 4 bytes is length
...
5
votes
0answers
124 views
boost::asio::acceptor - accept new incoming connections while old ones still open
I'm writing proxy server based on boost asio. In the part of my code responsible for accepting incoming connections from browser to proxy server, I'm facing the behaviour i'm not fully understand.
So ...
0
votes
1answer
125 views
boost::asio acceptor reopen and async read after EOF
sadly I've come to a hold in my development since I can not understand how exactly the boost::asio::ip::tcp::acceptor is supposed to be used.
The TCPReader class is designed to be a singleton and the ...
2
votes
2answers
85 views
When do I have to use boost::asio:strand
Reading the document of boost::asio, it is still not clear when I need to use asio::strand. Suppose that I have one thread using io_service is it then safe to write on a socket as follows ?
void ...
6
votes
3answers
3k views
Boost Asio and Web Sockets?
Does anyone know of any attempt to implement the Web Sockets API using Boost asio?
-3
votes
1answer
43 views
Boost runtime error
#include <iostream>
#include <boost/asio.hpp>
int main(int argc, char* argv[])
{
using namespace boost::asio;
io_service iosev;
ip::tcp::acceptor acceptor(iosev,
...
0
votes
2answers
85 views
Boost access violation while deleting ssl::stream<ip::tcp::socket>* sslSocket
While deleting an SSLSocket after a successful connection is made and used I am getting an access violation
Unhandled exception at 0x770f32d0 in Application_client_example.exe: 0xC0000005: Access ...
2
votes
2answers
2k views
Boost::asio winsock and winsock 2 compatibility issue
My project uses windows.h in which winsock.h is used, and I need to include boost:assio which uses winsock2. So I get many errors that says Winsock.h already included.
I can define ...
2
votes
2answers
382 views
Boost.Asio thread safety
Is it safe to call async_write & async_read from different threads in situation when io_service::run() was called from only one thread?
Thank you!
5
votes
2answers
114 views
Asio without Boost
Is Asio still developed separate from Boost, or is Boost.Asio the only version still being updated?
On the Asio website they talk about there being benefits to both versions, and that Asio is updated ...
2
votes
2answers
73 views
Is there a way to configure OpenSSL or boost::asio::ssl not to encrypt?
For debugging reasons I want sometimes to capture traffic and analyze it. One option to do that was to configure OpenSSL or boost::asio::ssl to keep the transport untouched. I couldn't find anything ...
0
votes
1answer
49 views
boost asio read / receive endianess
Reading data over a socket using boost asio tcp read functions or udp receive functions into a
std::vector<char>,
does the data fill up the vector in network byte order or receiving-host ...
2
votes
1answer
50 views
How to I get the UDP remote endpoint when using boost asio?
Let's say I've recoderded an handler for asynchronous receive on an UDP socket (which joined a multicast group):
udpSocket.async_receive(boost::asio::buffer(buffer, sizeof(buffer)),
...
1
vote
2answers
4k views
Boost asio ip tcp iostream Error Detection
Greetings. I'm just getting started with the boost::asio library and have run into some early difficulty related to boost::asio::ip::tcp::iostream.
My question has two parts:
1.) How does one ...
1
vote
1answer
35 views
Asynchronous reading on the inotify descriptor failed
I'm writing a monitoring-file program based on the source code: https://github.com/kvikas/file-monitor-service/blob/master/
My program uses boost::asio::stream_descriptor::async_read_some() for ...
0
votes
0answers
42 views
async_read_some of asio::stream_descriptor for file description from inotify_init() failed
I'm writing a asynchronous file monitoring program using boost::asio, based on the project: https://github.com/kvikas/file-monitor-service/tree/master/inotify
This project uses ...
0
votes
1answer
40 views
incorrect connection always succeedes
I'm trying to set up a simple connection with boost::asio. Whatever I do the boost error handling says that the connection succeedes, but it doesn't work.
This example presents the problem.
Whether ...
1
vote
1answer
56 views
Boost binding error in completion handler
I encountered an binding error
/usr/local/include/boost/bind/bind.hpp:457: error: invalid use of void expression
My program is about an asynchronous action using a callback handler as following:
...
1
vote
1answer
84 views
boost asio io_service object and the underlying threads
I am using boost asio library. This is my implementation
boost::asio::io_service ioservice;
boost::asio::io_service::work work(ioservice);
boost::thread_group threads;
for (int i = 0; i < 10; i++)
...
0
votes
1answer
56 views
boost::asio and Active Object
I have implemented some module based Active Object design pattern. It is very simple implementation. I have Scheduler, ActivationList, Requests and Futures to get response.
My requirements were like ...
1
vote
1answer
62 views
Timeouts on read and writes
I have been searching for a way to cancel a Boost ASIO read or write operation if it takes over a certain amount of time. My server is sending out HTTP requests, and reading results from those ...
-2
votes
0answers
59 views
how to return thread back to boost asio pool
i am trying thread pool using boost asio,
i want some way by which if thread did not finish his work within x time it should get return
to pool i tried async timer but did not work.
thanks in ...
2
votes
1answer
85 views
Why no strand::wrap() equivalent for strand::post()?
The behavior of strand::wrap() is defined such that it creates a functor that will execute strand::dispatch() when invoked. I have recently come across a bug in one of our applications that performs ...
2
votes
1answer
40 views
boost asio giving You must add -D__USE_W32_SOCKETS to your compiler options on cygwin
I was trying to use the boost library first time. Using as an environment Eclipse 4.3 with CDT and as compiler gcc 3.4 and boost 1.53.
I was browsing various sites to find info on how to setup boost, ...
2
votes
2answers
168 views
Network Library for server side of a mmorpg (libuv/boost::asio?)
I am currently rewriting the server side of a very old mmorpg, and I was looking for a good opensource network library to use with C/C++.
As the client already exists, I can't use any library that ...
0
votes
2answers
118 views
How to use boost asio [closed]
I am planning on using Boost Asio library for targeting serial ports. I am not entirely sure how to use it, however.
As I understand it, asio needs to be built. In theory there is a ham build... ...
5
votes
1answer
101 views
Why does this ASIO example use members variables to pass state rather than using bind?
In the ASIO HTTP Server 3 example there is code like this:
void server::start_accept()
{
new_connection_.reset(new connection(io_service_, request_handler_));
...
2
votes
1answer
60 views
how to replace WSAStartup( MAKEWORD(2, 2), &data ); with boost:asio?
I have native dll project which I use from C# via CLI wrapper. In Initialize method of dll i'm calling
WSAStartup(MAKEWORD(2, 2), &data);
This works fine.
Now I"ve decided to move entire dll to ...
0
votes
1answer
55 views
How can I disable automatic linking using boost asio?
I have a project that include some asio header files, I have boost_system linked statically already, but ASIO keeps adding -lboost_system to the linker so the resulting binary depends on the dynamic ...
0
votes
2answers
113 views
boost asio tcp - socket write data different from data in buffer - possible thread unsafety somewhere
I'm exploring the boost asio offerings
the client sends a header of 1 byte indicating the length of bytes to follow.
relevant server code:
enum {max_length=1};
void handle_read(const ...
0
votes
1answer
66 views
boost asio async write handler calling itself
This question is in connection with another previous question of mine.
Can a boost::asio::async_write handler function called upon completion of the write operation itself engaging in a write ...
4
votes
3answers
1k views
Boost.Asio HTTP library [closed]
I'm searching for a high level advanced http library to write a native frontend for a large web application. Libraries based on boost.asio are preferred as I already use boost (and asio).
Cookie, ...
0
votes
1answer
72 views
c++ boost asio serial communication “cannot access private member” in basic_serial_port.hpp
I'm writing a C++ program to communicate with multiple devices - an Arduino Pro Mini w/ATmega328 and an Arduino Uno with GPS shield - simultaneously via COM port, and I'm using the boost::asio ...
0
votes
0answers
38 views
boost async_read_until calls handle read continuously
I've not found a specific reference to a solution to this problem. I am writing a server using a modified version of the boost asynch example 3. I am using async_read_until. when recieving the message ...
0
votes
1answer
39 views
passing a string variable to boost::ASIO reader/handlers sause seg fault
I was trying to modify a boost::asio example when I hit this problem:
I simplified the code for easy reading(u'll see a lot of couts for more help):
-Somewhere in my code, I initiate an async_read:
...
1
vote
1answer
53 views
boost::asio::async_read not reading subsequent packets
I'm trying to make a TCP Chat Server that will communicate with an already existing chat client. I don't have access to the code of the existing chat client but I know what it sends over the network ...
0
votes
1answer
99 views
Reading messages from a serial port with boost asio
I would like to use boost asio to read variable length messages from the serial port. I would like to read and wait long enough to be sure that the line is idle, but I do not want to block completely. ...
3
votes
1answer
2k views
Sending raw data with write() in boost::asio
I've recently decided to use boost::asio for my sockets, but now I'm running into a problem: documentation seems to be lacking.
What I want to do is write a function that will send a message ...
0
votes
0answers
47 views
How to use signal_set to terminate boost asio io_service run
I am trying to add a ^C handler to a boost io_service. Prior to adding, the service would exit when it ran out of I/O (all the associated sockets had closed). After adding the signal_set, it doesn't ...
4
votes
1answer
348 views
boost::asio over SocketCAN
I was thinking of making use of Boost Asio to read data from a Socket CAN.
There's nothing fancy going on in linux/can.h , and the device should
behave like the loopback interface, and be used with a ...
3
votes
2answers
729 views
Using thread pool for simulation : boost-thread and boost-asio
I would like to use boost::asio to set up a thread pool.
My question is : how can I attach specific data to each of the threads created, and how can I manage individual outputs ?
To be more specific, ...
1
vote
1answer
81 views
using p12 container in boost::asio server
I need to make server using boost::asio works on SSL.
I have seen the boost examples but didn't find it useful as I have p12 container. Can any body help me out to establish secure connection using ...
0
votes
1answer
41 views
asio write succeeding but no information sent
I am having a problem while creating a client program that sends requests. The request are using keep alive TCP HTTP connections. When a connection is closed(due to timeout or max being hit), I try ...
