mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
da31917f4f
Relicense permission collected from all relevant authors as tallied at: https://github.com/rlenferink/libzmq-relicense/blob/master/checklist.md The relicense grants are collected under RELICENSE/ and will be moved to the above repository in a later commit. Fixes https://github.com/zeromq/libzmq/issues/2376
18 lines
493 B
C++
18 lines
493 B
C++
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
#include "precompiled.hpp"
|
|
#include "endpoint.hpp"
|
|
|
|
zmq::endpoint_uri_pair_t
|
|
zmq::make_unconnected_connect_endpoint_pair (const std::string &endpoint_)
|
|
{
|
|
return endpoint_uri_pair_t (std::string (), endpoint_,
|
|
endpoint_type_connect);
|
|
}
|
|
|
|
zmq::endpoint_uri_pair_t
|
|
zmq::make_unconnected_bind_endpoint_pair (const std::string &endpoint_)
|
|
{
|
|
return endpoint_uri_pair_t (endpoint_, std::string (), endpoint_type_bind);
|
|
}
|