upap.h
来自「eCos操作系统源码」· C头文件 代码 · 共 137 行
H
137 行
//==========================================================================//// include/upap.h////==========================================================================//####ECOSGPLCOPYRIGHTBEGIN####// -------------------------------------------// This file is part of eCos, the Embedded Configurable Operating System.// Portions created by Nick Garnett are// Copyright (C) 2003 eCosCentric Ltd.//// eCos is free software; you can redistribute it and/or modify it under// the terms of the GNU General Public License as published by the Free// Software Foundation; either version 2 or (at your option) any later version.//// eCos is distributed in the hope that it will be useful, but WITHOUT ANY// WARRANTY; without even the implied warranty of MERCHANTABILITY or// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License// for more details.//// You should have received a copy of the GNU General Public License along// with eCos; if not, write to the Free Software Foundation, Inc.,// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.//// As a special exception, if other files instantiate templates or use macros// or inline functions from this file, or you compile this file and link it// with other works to produce a work based on this file, this file does not// by itself cause the resulting work to be covered by the GNU General Public// License. However the source code for this file must still be made available// in accordance with section (3) of the GNU General Public License.//// This exception does not invalidate any other reasons why a work based on// this file might be covered by the GNU General Public License.//// -------------------------------------------//####ECOSGPLCOPYRIGHTEND####//####BSDCOPYRIGHTBEGIN####//// -------------------------------------------//// Portions of this software may have been derived from OpenBSD, // FreeBSD or other sources, and are covered by the appropriate// copyright disclaimers included herein.//// -------------------------------------------////####BSDCOPYRIGHTEND####//==========================================================================/* * upap.h - User/Password Authentication Protocol definitions. * * Copyright (c) 1989 Carnegie Mellon University. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, * advertising materials, and other materials related to such * distribution and use acknowledge that the software was developed * by Carnegie Mellon University. The name of the * University may not be used to endorse or promote products derived * from this software without specific prior written permission. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * $FreeBSD: src/usr.sbin/pppd/upap.h,v 1.7 1999/08/28 01:19:09 peter Exp $ *//* * Packet header = Code, id, length. */#define UPAP_HEADERLEN (sizeof (u_char) + sizeof (u_char) + sizeof (u_short))/* * UPAP codes. */#define UPAP_AUTHREQ 1 /* Authenticate-Request */#define UPAP_AUTHACK 2 /* Authenticate-Ack */#define UPAP_AUTHNAK 3 /* Authenticate-Nak *//* * Each interface is described by upap structure. */typedef struct upap_state { int us_unit; /* Interface unit number */ char *us_user; /* User */ int us_userlen; /* User length */ char *us_passwd; /* Password */ int us_passwdlen; /* Password length */ int us_clientstate; /* Client state */ int us_serverstate; /* Server state */ u_char us_id; /* Current id */ int us_timeouttime; /* Timeout (seconds) for auth-req retrans. */ int us_transmits; /* Number of auth-reqs sent */ int us_maxtransmits; /* Maximum number of auth-reqs to send */ int us_reqtimeout; /* Time to wait for auth-req from peer */} upap_state;/* * Client states. */#define UPAPCS_INITIAL 0 /* Connection down */#define UPAPCS_CLOSED 1 /* Connection up, haven't requested auth */#define UPAPCS_PENDING 2 /* Connection down, have requested auth */#define UPAPCS_AUTHREQ 3 /* We've sent an Authenticate-Request */#define UPAPCS_OPEN 4 /* We've received an Ack */#define UPAPCS_BADAUTH 5 /* We've received a Nak *//* * Server states. */#define UPAPSS_INITIAL 0 /* Connection down */#define UPAPSS_CLOSED 1 /* Connection up, haven't requested auth */#define UPAPSS_PENDING 2 /* Connection down, have requested auth */#define UPAPSS_LISTEN 3 /* Listening for an Authenticate */#define UPAPSS_OPEN 4 /* We've sent an Ack */#define UPAPSS_BADAUTH 5 /* We've sent a Nak *//* * Timeouts. */#define UPAP_DEFTIMEOUT 3 /* Timeout (seconds) for retransmitting req */#define UPAP_DEFREQTIME 30 /* Time to wait for auth-req from peer */extern upap_state upap[];void upap_authwithpeer __P((int, char *, char *));void upap_authpeer __P((int));extern struct protent pap_protent;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?