vty: The telnet interface is TCP only. Fix the comments

Change-Id: I38555c4d4f565ce21dda34fc3857c47b3d802dbd
This commit is contained in:
Holger Hans Peter Freyther 2018-12-22 03:23:43 +00:00 committed by Harald Welte
parent cf6ee64423
commit d8d0ef6b5c
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ static struct osmo_fd server_socket = {
/*! Initialize telnet based VTY interface listening to 127.0.0.1
* \param[in] tall_ctx \ref talloc context
* \param[in] priv private data to be passed to callback
* \param[in] port UDP port number
* \param[in] port TCP port number to bind to
*/
int telnet_init(void *tall_ctx, void *priv, int port)
{
@ -78,7 +78,7 @@ int telnet_init(void *tall_ctx, void *priv, int port)
* \param[in] tall_ctx \ref talloc context
* \param[in] priv private data to be passed to callback
* \param[in] ip IP to listen to ('::1' for localhost, '::0' for all, ...)
* \param[in] port UDP port number
* \param[in] port TCP port number to bind to
*/
int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port)
{