]> andersk Git - openssh.git/blame - canohost.h
- (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
[openssh.git] / canohost.h
CommitLineData
865ac82e 1/* $OpenBSD: canohost.h,v 1.3 2001/01/29 19:42:35 markus Exp $ */
23c2a7a5 2
42f11eb2 3/*
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 */
14/*
15 * Returns the name of the machine at the other end of the socket. The
16 * returned string should be freed by the caller.
17 */
18char *get_remote_hostname(int socket);
19
20/*
21 * Return the canonical name of the host in the other side of the current
22 * connection (as returned by packet_get_connection). The host name is
23 * cached, so it is efficient to call this several times.
24 */
25const char *get_canonical_hostname(void);
26
27/*
865ac82e 28 * Returns the IP-address of the remote host as a string. The returned
29 * string must not be freed.
42f11eb2 30 */
31const char *get_remote_ipaddr(void);
32
865ac82e 33/* Returns the ipaddr/port number of the peer of the socket. */
34char * get_peer_ipaddr(int socket);
42f11eb2 35int get_peer_port(int sock);
36
37/* Returns the port number of the remote/local host. */
38int get_remote_port(void);
39int get_local_port(void);
This page took 0.072118 seconds and 5 git commands to generate.