= nng_tcp_dialer(5) // // Copyright 2018 Staysail Systems, Inc. // Copyright 2018 Capitar IT Group BV // // This document is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // == NAME nng_tcp_dialer - TCP dialer == SYNOPSIS [source, c] ---- #include #include typedef struct nng_tcp_dialer_s nng_tcp_dialer; ---- == DESCRIPTION (((TCP, dialer))) An `nng_tcp_dialer` is a handle to a TCP "`dialer`", which is responsible for creating a connections (`<>` objects) by connecting to remote systems. NOTE: The `nng_tcp_dialer` object is used for raw TCP connections, and should not be confused with a dialer object created using the <> transport. TIP: Most NNG applications should not use this, but instead use the `<>` transport instead. == SEE ALSO [.text-left] <>, <>, <>, <>, <>, <>, <>