Wladimir J. van der Laan 0a0cd34552 rpc: pass errors from async_accept
According to the [boost::asio documentation](http://www.boost.org/doc/libs/1_55_0/doc/html/boost_asio/reference/basic_socket_acceptor/async_accept/overload2.html),
the function signature of the handler must be:

    void handler(
      const boost::system::error_code& error // Result of operation.
    );

We were binding *all* the arguments, instead of all but the error,
resulting in nullary function that never got the error. Fix this
by adding an input argument substitution.
2014-05-12 09:30:46 +02:00
..
2012-04-27 10:14:33 -04:00
2014-05-09 16:54:07 +02:00
2014-05-10 15:32:18 +02:00
2014-01-23 16:05:01 +01:00
2014-03-20 13:21:23 +09:00
2014-04-02 03:48:07 +02:00
2014-04-02 03:48:07 +02:00
2013-11-30 15:42:10 +10:00
2013-11-30 15:42:10 +10:00
2013-12-04 12:46:13 +01:00
2013-12-04 12:46:13 +01:00
2013-06-24 00:56:45 +02:00
2014-05-11 23:09:21 +00:00
2013-12-20 16:07:33 +01:00
2014-03-24 20:26:02 +00:00
2014-05-09 17:03:51 +02:00
2014-05-09 17:03:51 +02:00
2014-05-09 17:56:16 +02:00
2014-04-23 01:50:25 +02:00
2014-03-24 20:26:02 +00:00
2014-05-09 16:09:20 +02:00
2014-05-09 16:45:57 +02:00
2014-05-09 12:39:24 -07:00
2014-05-09 16:24:57 +02:00
2014-05-09 16:24:57 +02:00
2014-02-26 11:53:51 -05:00
2014-02-26 11:53:51 -05:00
2014-04-02 03:48:07 +02:00
2014-05-09 16:45:57 +02:00
2014-05-09 16:45:57 +02:00
2013-11-11 10:31:09 +10:00
2014-03-07 09:20:11 +01:00