Deleted Added
sdiff udiff text old ( 57430 ) new ( 57464 )
full compact
1/*
2 *
3 * authfd.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Wed Mar 29 01:30:28 1995 ylo
11 *
12 * Functions for connecting the local authentication agent.
13 *
14 */
15
16#include "includes.h"
17RCSID("$Id: authfd.c,v 1.16 1999/12/15 19:43:10 markus Exp $");
18
19#include "ssh.h"
20#include "rsa.h"
21#include "authfd.h"
22#include "buffer.h"
23#include "bufaux.h"
24#include "xmalloc.h"
25#include "getput.h"
26
27#include
28
29/* Returns the number of the authentication fd, or -1 if there is none. */
30
31int
32ssh_get_authentication_socket()
33{
34 const char *authsocket;
35 int sock;

--- 543 unchanged lines hidden ---