* Gets the address and port of host the control connection is connected to. * @returns {String|undefined}
()
| 1042 | * @returns {String|undefined} |
| 1043 | */ |
| 1044 | getEndpoint() { |
| 1045 | if (!this.connection) { |
| 1046 | return undefined; |
| 1047 | } |
| 1048 | |
| 1049 | return this.connection.endpoint; |
| 1050 | } |
| 1051 | } |
| 1052 | |
| 1053 | /** |
no outgoing calls
no test coverage detected