1*7348b5c5SDavid van Moolenbroek /* $NetBSD: misc-proto.h,v 1.10 2005/02/06 05:53:07 perry Exp $ */ 2*7348b5c5SDavid van Moolenbroek 3*7348b5c5SDavid van Moolenbroek /*- 4*7348b5c5SDavid van Moolenbroek * Copyright (c) 1991, 1993 5*7348b5c5SDavid van Moolenbroek * The Regents of the University of California. All rights reserved. 6*7348b5c5SDavid van Moolenbroek * 7*7348b5c5SDavid van Moolenbroek * Redistribution and use in source and binary forms, with or without 8*7348b5c5SDavid van Moolenbroek * modification, are permitted provided that the following conditions 9*7348b5c5SDavid van Moolenbroek * are met: 10*7348b5c5SDavid van Moolenbroek * 1. Redistributions of source code must retain the above copyright 11*7348b5c5SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer. 12*7348b5c5SDavid van Moolenbroek * 2. Redistributions in binary form must reproduce the above copyright 13*7348b5c5SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer in the 14*7348b5c5SDavid van Moolenbroek * documentation and/or other materials provided with the distribution. 15*7348b5c5SDavid van Moolenbroek * 3. Neither the name of the University nor the names of its contributors 16*7348b5c5SDavid van Moolenbroek * may be used to endorse or promote products derived from this software 17*7348b5c5SDavid van Moolenbroek * without specific prior written permission. 18*7348b5c5SDavid van Moolenbroek * 19*7348b5c5SDavid van Moolenbroek * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20*7348b5c5SDavid van Moolenbroek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21*7348b5c5SDavid van Moolenbroek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22*7348b5c5SDavid van Moolenbroek * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23*7348b5c5SDavid van Moolenbroek * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24*7348b5c5SDavid van Moolenbroek * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25*7348b5c5SDavid van Moolenbroek * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26*7348b5c5SDavid van Moolenbroek * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27*7348b5c5SDavid van Moolenbroek * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28*7348b5c5SDavid van Moolenbroek * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29*7348b5c5SDavid van Moolenbroek * SUCH DAMAGE. 30*7348b5c5SDavid van Moolenbroek * 31*7348b5c5SDavid van Moolenbroek * from: @(#)misc-proto.h 8.1 (Berkeley) 6/4/93 32*7348b5c5SDavid van Moolenbroek */ 33*7348b5c5SDavid van Moolenbroek 34*7348b5c5SDavid van Moolenbroek /* 35*7348b5c5SDavid van Moolenbroek * Copyright (C) 1990 by the Massachusetts Institute of Technology 36*7348b5c5SDavid van Moolenbroek * 37*7348b5c5SDavid van Moolenbroek * Export of this software from the United States of America is assumed 38*7348b5c5SDavid van Moolenbroek * to require a specific license from the United States Government. 39*7348b5c5SDavid van Moolenbroek * It is the responsibility of any person or organization contemplating 40*7348b5c5SDavid van Moolenbroek * export to obtain such a license before exporting. 41*7348b5c5SDavid van Moolenbroek * 42*7348b5c5SDavid van Moolenbroek * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 43*7348b5c5SDavid van Moolenbroek * distribute this software and its documentation for any purpose and 44*7348b5c5SDavid van Moolenbroek * without fee is hereby granted, provided that the above copyright 45*7348b5c5SDavid van Moolenbroek * notice appear in all copies and that both that copyright notice and 46*7348b5c5SDavid van Moolenbroek * this permission notice appear in supporting documentation, and that 47*7348b5c5SDavid van Moolenbroek * the name of M.I.T. not be used in advertising or publicity pertaining 48*7348b5c5SDavid van Moolenbroek * to distribution of the software without specific, written prior 49*7348b5c5SDavid van Moolenbroek * permission. M.I.T. makes no representations about the suitability of 50*7348b5c5SDavid van Moolenbroek * this software for any purpose. It is provided "as is" without express 51*7348b5c5SDavid van Moolenbroek * or implied warranty. 52*7348b5c5SDavid van Moolenbroek */ 53*7348b5c5SDavid van Moolenbroek 54*7348b5c5SDavid van Moolenbroek #ifndef __MISC_PROTO__ 55*7348b5c5SDavid van Moolenbroek #define __MISC_PROTO__ 56*7348b5c5SDavid van Moolenbroek 57*7348b5c5SDavid van Moolenbroek #include <sys/cdefs.h> 58*7348b5c5SDavid van Moolenbroek 59*7348b5c5SDavid van Moolenbroek void auth_encrypt_init(const char *, const char *, const char *, int); 60*7348b5c5SDavid van Moolenbroek void auth_encrypt_user(const char *); 61*7348b5c5SDavid van Moolenbroek void auth_encrypt_connect(int); 62*7348b5c5SDavid van Moolenbroek void printd(const unsigned char *, int); 63*7348b5c5SDavid van Moolenbroek 64*7348b5c5SDavid van Moolenbroek /* 65*7348b5c5SDavid van Moolenbroek * These functions are imported from the application 66*7348b5c5SDavid van Moolenbroek */ 67*7348b5c5SDavid van Moolenbroek int telnet_net_write(unsigned char *, int); 68*7348b5c5SDavid van Moolenbroek void net_encrypt(void); 69*7348b5c5SDavid van Moolenbroek int telnet_spin(void); 70*7348b5c5SDavid van Moolenbroek char *telnet_getenv(char *); 71*7348b5c5SDavid van Moolenbroek char *telnet_gets(char *, char *, int, int); 72*7348b5c5SDavid van Moolenbroek #endif 73