/src/libzmq/src/endpoint.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | /* SPDX-License-Identifier: MPL-2.0 */ |
2 | | |
3 | | #include "precompiled.hpp" |
4 | | #include "endpoint.hpp" |
5 | | |
6 | | zmq::endpoint_uri_pair_t |
7 | | zmq::make_unconnected_connect_endpoint_pair (const std::string &endpoint_) |
8 | 0 | { |
9 | 0 | return endpoint_uri_pair_t (std::string (), endpoint_, |
10 | 0 | endpoint_type_connect); |
11 | 0 | } |
12 | | |
13 | | zmq::endpoint_uri_pair_t |
14 | | zmq::make_unconnected_bind_endpoint_pair (const std::string &endpoint_) |
15 | 0 | { |
16 | 0 | return endpoint_uri_pair_t (endpoint_, std::string (), endpoint_type_bind); |
17 | 0 | } |