diff options
author | unknown <bell@sanja.is.com.ua> | 2003-02-17 22:07:26 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-02-17 22:07:26 +0200 |
commit | 1b9b2c3091fc580bff82ca0630221eabd5628d6c (patch) | |
tree | 36d57cc3236865b15adff6a4d9784a9ddd977aa6 /libmysqld | |
parent | 65508b65ba04d499f900259d52d6b16be871ef4a (diff) | |
download | mariadb-git-1b9b2c3091fc580bff82ca0630221eabd5628d6c.tar.gz |
client port number added to SHOW PROCESSLIST (SCRUM?)
include/violite.h:
port added to reported parameters
libmysqld/lib_vio.c:
port added to reported parameters
sql/sql_class.h:
port added to reported parameters
sql/sql_parse.cc:
port added to reported parameters
sql/sql_show.cc:
SHOW PROCESSLIST will report port number if it is possible
vio/viosocket.c:
port added to reported parameters
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_vio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_vio.c b/libmysqld/lib_vio.c index 29a70b7acbb..428df972372 100644 --- a/libmysqld/lib_vio.c +++ b/libmysqld/lib_vio.c @@ -204,7 +204,7 @@ my_socket vio_fd(Vio* vio) } -my_bool vio_peer_addr(Vio * vio, char *buf) +my_bool vio_peer_addr(Vio * vio, char *buf, u_int16_t *port) { return(0); } |