blob: 36fb345a122354ef6d73de1f16e4d2736944a0dc [file] [log] [blame]
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001/* $OpenBSD: canohost.h,v 1.6 2001/04/12 19:15:24 markus Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Ben Lindstrom226cfa02001-01-22 05:34:40 +00003/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000014
15/*
16 * Return the canonical name of the host in the other side of the current
17 * connection (as returned by packet_get_connection). The host name is
18 * cached, so it is efficient to call this several times.
19 */
Damien Miller33804262001-02-04 23:20:18 +110020const char *get_canonical_hostname(int reverse_mapping_check);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000021
22/*
Damien Millerd83ff352001-01-30 09:19:34 +110023 * Returns the IP-address of the remote host as a string. The returned
Damien Miller33804262001-02-04 23:20:18 +110024 * string is cached and must not be freed.
Ben Lindstrom226cfa02001-01-22 05:34:40 +000025 */
26const char *get_remote_ipaddr(void);
27
Ben Lindstromf15a3862001-04-05 23:32:17 +000028const char *get_remote_name_or_ip(u_int utmp_len, int reverse_mapping_check);
29
Damien Millerd83ff352001-01-30 09:19:34 +110030/* Returns the ipaddr/port number of the peer of the socket. */
31char * get_peer_ipaddr(int socket);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032int get_peer_port(int sock);
Ben Lindstrom5eabda32001-04-12 23:34:34 +000033char * get_local_ipaddr(int socket);
34char * get_local_name(int socket);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035
36/* Returns the port number of the remote/local host. */
37int get_remote_port(void);
38int get_local_port(void);