summaryrefslogtreecommitdiff
path: root/canohost.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2016-03-07 19:02:43 +0000
committerDamien Miller <djm@mindrot.org>2016-03-08 06:20:35 +1100
commit95767262caa6692eff1e1565be1f5cb297949a89 (patch)
tree1055360a328d0998dabb966f2e1002389f8c6c41 /canohost.h
parentaf0bb38ffd1f2c4f9f43b0029be2efe922815255 (diff)
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.h13
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 @@
1/* $OpenBSD: canohost.h,v 1.11 2009/05/27 06:31:25 andreas Exp $ */ 1/* $OpenBSD: canohost.h,v 1.12 2016/03/07 19:02:43 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -12,18 +12,15 @@
12 * called by a name other than "ssh" or "Secure Shell". 12 * called by a name other than "ssh" or "Secure Shell".
13 */ 13 */
14 14
15const char *get_canonical_hostname(int); 15#ifndef _CANOHOST_H
16const char *get_remote_ipaddr(void); 16#define _CANOHOST_H
17const char *get_remote_name_or_ip(u_int, int);
18 17
19char *get_peer_ipaddr(int); 18char *get_peer_ipaddr(int);
20int get_peer_port(int); 19int get_peer_port(int);
21char *get_local_ipaddr(int); 20char *get_local_ipaddr(int);
22char *get_local_name(int); 21char *get_local_name(int);
22int get_local_port(int);
23 23
24int get_remote_port(void); 24#endif /* _CANOHOST_H */
25int get_local_port(void);
26int get_sock_port(int, int);
27void clear_cached_addr(void);
28 25
29void ipv64_normalise_mapped(struct sockaddr_storage *, socklen_t *); 26void ipv64_normalise_mapped(struct sockaddr_storage *, socklen_t *);