Home | History | Annotate | Line # | Download | only in net
if_pppoe.h revision 1.1.4.1
      1  1.1.4.1  thorpej /* $NetBSD: if_pppoe.h,v 1.1.4.1 2002/01/10 20:02:10 thorpej Exp $ */
      2      1.1   martin 
      3      1.1   martin /*
      4      1.1   martin  * Copyright (c) 2001 Martin Husemann. All rights reserved.
      5      1.1   martin  *
      6      1.1   martin  * Redistribution and use in source and binary forms, with or without
      7      1.1   martin  * modification, are permitted provided that the following conditions
      8      1.1   martin  * are met:
      9      1.1   martin  * 1. Redistributions of source code must retain the above copyright
     10      1.1   martin  *    notice, this list of conditions and the following disclaimer.
     11      1.1   martin  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1   martin  *    notice, this list of conditions and the following disclaimer in the
     13      1.1   martin  *    documentation and/or other materials provided with the distribution.
     14      1.1   martin  *
     15      1.1   martin  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     16      1.1   martin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17      1.1   martin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     18      1.1   martin  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     19      1.1   martin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20      1.1   martin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     21      1.1   martin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22      1.1   martin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     23      1.1   martin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     24      1.1   martin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     25      1.1   martin  * SUCH DAMAGE.
     26      1.1   martin  *
     27      1.1   martin  */
     28      1.1   martin 
     29      1.1   martin struct pppoediscparms {
     30      1.1   martin 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     31      1.1   martin 	char	eth_ifname[IFNAMSIZ];	/* external ethernet interface name */
     32      1.1   martin 	char	*ac_name;		/* access concentrator name (or NULL) */
     33      1.1   martin 	size_t	ac_name_len;		/* on write: length of buffer for ac_name */
     34      1.1   martin 	char	*service_name;		/* service name (or NULL) */
     35      1.1   martin 	size_t	service_name_len;	/* on write: length of buffer for service name */
     36      1.1   martin };
     37      1.1   martin 
     38      1.1   martin #define	PPPOESETPARMS	_IOW('i', 110, struct pppoediscparms)
     39  1.1.4.1  thorpej #define	PPPOEGETPARMS	_IOWR('i', 111, struct pppoediscparms)
     40  1.1.4.1  thorpej 
     41  1.1.4.1  thorpej #define PPPOE_STATE_INITIAL	0
     42  1.1.4.1  thorpej #define PPPOE_STATE_PADI_SENT	1
     43  1.1.4.1  thorpej #define	PPPOE_STATE_PADR_SENT	2
     44  1.1.4.1  thorpej #define	PPPOE_STATE_SESSION	3
     45  1.1.4.1  thorpej #define	PPPOE_STATE_CLOSING	4
     46  1.1.4.1  thorpej 
     47  1.1.4.1  thorpej struct pppoeconnectionstate {
     48  1.1.4.1  thorpej 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     49  1.1.4.1  thorpej 	u_int	state;			/* one of the PPPOE_STATE_ states above */
     50  1.1.4.1  thorpej 	u_int	session_id;		/* if state == PPPOE_STATE_SESSION */
     51  1.1.4.1  thorpej 	u_int	padi_retry_no;		/* number of retries already sent */
     52  1.1.4.1  thorpej 	u_int	padr_retry_no;
     53  1.1.4.1  thorpej };
     54  1.1.4.1  thorpej 
     55  1.1.4.1  thorpej #define PPPOEGETSESSION	_IOWR('i', 112, struct pppoeconnectionstate)
     56  1.1.4.1  thorpej 
     57  1.1.4.1  thorpej struct pppoeidletimeoutcfg {
     58  1.1.4.1  thorpej 	char	ifname[IFNAMSIZ];	/* pppoe interface name */
     59  1.1.4.1  thorpej 	u_long	idle_timeout;		/* idle timeout in seconds */
     60  1.1.4.1  thorpej };
     61  1.1.4.1  thorpej 
     62  1.1.4.1  thorpej #define	PPPOEGETIDLETIMEOUT	_IOWR('i', 113, struct pppoeidletimeoutcfg)
     63  1.1.4.1  thorpej #define	PPPOESETIDLETIMEOUT	_IOW('i', 114, struct pppoeidletimeoutcfg)
     64      1.1   martin 
     65      1.1   martin #ifdef _KERNEL
     66      1.1   martin 
     67      1.1   martin extern struct ifqueue ppoediscinq;
     68      1.1   martin extern struct ifqueue ppoeinq;
     69      1.1   martin 
     70      1.1   martin #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
     71      1.1   martin extern void * pppoe_softintr;			/* softinterrupt cookie */
     72      1.1   martin #else
     73      1.1   martin extern struct callout pppoe_softintr;		/* callout (poor mans softint) */
     74      1.1   martin extern void pppoe_softintr_handler(void*);	/* handler function */
     75      1.1   martin #endif
     76      1.1   martin 
     77      1.1   martin #endif	/* _KERNEL */
     78      1.1   martin 
     79