Skip to content
Snippets Groups Projects
Commit 5edd21d9 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Only check first msg on connecting

parent 0b76aafe
No related branches found
No related tags found
1 merge request!100Resolves #163 garbage segfault
This commit is part of merge request !100. Comments created here will be created in the context of that merge request.
......@@ -65,15 +65,15 @@ void ftl::net::Dispatcher::dispatch_call(Peer &s, const msgpack::object &msg) {
// assert(type == 0);
if (type == 1) {
LOG(INFO) << "RPC return for " << id;
//DLOG(INFO) << "RPC return for " << id;
s._dispatchResponse(id, args);
} else if (type == 0) {
LOG(INFO) << "RPC " << name << "() <- " << s.getURI();
//DLOG(INFO) << "RPC " << name << "() <- " << s.getURI();
auto func = _locateHandler(name);
if (func) {
LOG(INFO) << "Found binding for " << name;
//DLOG(INFO) << "Found binding for " << name;
try {
auto result = (*func)(args); //->get();
s._sendResponse(id, result->get());
......
......@@ -514,11 +514,11 @@ bool Peer::_data() {
_data();
});
if (status_ != kConnected) {
if (status_ == kConnecting) {
// If not connected, must lock to make sure no other thread performs this step
UNIQUE_LOCK(recv_mtx_,lk);
// Verify still not connected after lock
if (status_ != kConnected) {
if (status_ == kConnecting) {
// First message must be a handshake
try {
tuple<uint32_t, std::string, msgpack::object> hs;
......@@ -554,7 +554,7 @@ void Peer::_dispatchResponse(uint32_t id, msgpack::object &res) {
// TODO: Handle error reporting...
UNIQUE_LOCK(cb_mtx_,lk);
if (callbacks_.count(id) > 0) {
DLOG(1) << "Received return RPC value";
//DLOG(1) << "Received return RPC value";
// Allow for unlock before callback
auto cb = std::move(callbacks_[id]);
......@@ -576,7 +576,6 @@ void Peer::cancelCall(int id) {
}
void Peer::_sendResponse(uint32_t id, const msgpack::object &res) {
LOG(INFO) << "Sending response: " << id;
Dispatcher::response_t res_obj = std::make_tuple(1,id,std::string(""),res);
UNIQUE_LOCK(send_mtx_,lk);
if (scheme_ == ftl::URI::SCHEME_WS) send_buf_.append_ref(nullptr,0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment