diff options
author | djm@openbsd.org <djm@openbsd.org> | 2016-03-07 20:02:43 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-03-07 20:20:35 +0100 |
commit | 95767262caa6692eff1e1565be1f5cb297949a89 (patch) | |
tree | 1055360a328d0998dabb966f2e1002389f8c6c41 /canohost.h | |
parent | hook unittests/misc/kexfuzz into build (diff) | |
download | openssh-95767262caa6692eff1e1565be1f5cb297949a89.tar.xz openssh-95767262caa6692eff1e1565be1f5cb297949a89.zip |
upstream commit
refactor canohost.c: move functions that cache results closer
to the places that use them (authn and session code). After this, no state is
cached in canohost.c
feedback and ok markus@
Upstream-ID: 5f2e4df88d4803fc8ec59ec53629105e23ce625e
Diffstat (limited to 'canohost.h')
-rw-r--r-- | canohost.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/canohost.h b/canohost.h index 4c8636f42..26d62855a 100644 --- a/canohost.h +++ b/canohost.h @@ -1,4 +1,4 @@ -/* $OpenBSD: canohost.h,v 1.11 2009/05/27 06:31:25 andreas Exp $ */ +/* $OpenBSD: canohost.h,v 1.12 2016/03/07 19:02:43 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -12,18 +12,15 @@ * called by a name other than "ssh" or "Secure Shell". */ -const char *get_canonical_hostname(int); -const char *get_remote_ipaddr(void); -const char *get_remote_name_or_ip(u_int, int); +#ifndef _CANOHOST_H +#define _CANOHOST_H char *get_peer_ipaddr(int); int get_peer_port(int); char *get_local_ipaddr(int); char *get_local_name(int); +int get_local_port(int); -int get_remote_port(void); -int get_local_port(void); -int get_sock_port(int, int); -void clear_cached_addr(void); +#endif /* _CANOHOST_H */ void ipv64_normalise_mapped(struct sockaddr_storage *, socklen_t *); |