Problem: plain_server_t duplicates zap_client_t::send_zap_request

Solution: Use zap_client_t::send_zap_request
This commit is contained in:
sigiesec
2017-08-16 12:50:46 +02:00
parent 014b201d3e
commit d7a3778387
5 changed files with 44 additions and 96 deletions

View File

@@ -194,7 +194,7 @@ zmq::mechanism_t::status_t zmq::null_mechanism_t::status () const
int zmq::null_mechanism_t::send_zap_request ()
{
return zap_client.send_zap_request ("NULL", 4, NULL, 0);
return zap_client.send_zap_request ("NULL", 4, NULL, NULL, 0);
}
int zmq::null_mechanism_t::receive_and_process_zap_reply ()