Definition at line 65 of file SessionConnectionSettings.h.
◆ SessionConnectionSettings()
Constructor.
- Parameters
-
| host | the remote host to which session must connect to. |
| port | the port number to which session must connect to. |
| ipSessionToken | the IP session token to be used during the connection establishment. |
Definition at line 73 of file SessionConnectionSettings.h.
73 {})
74 {
75 addCounterparty(std::move(host), port, std::move(ipSessionToken));
76 }
◆ addCounterparty()
Adds the counterparty.
- Parameters
-
| host | the remote host to which session must connect to. |
| port | the port number to which session must connect to. |
| ipSessionToken | the IP session token to be used during the connection establishment. |
Definition at line 83 of file SessionConnectionSettings.h.
83 {})
84 {
85 counterparties_.emplace_back(std::move(host), port, std::move(ipSessionToken));
86 return *this;
87 }
◆ counterparties()