File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / libpdel / ppp / ppp_bundle.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:25:53 2012 UTC (12 years, 4 months ago) by misho
Branches: libpdel, MAIN
CVS tags: v0_5_3, HEAD
libpdel


/*
 * Copyright (c) 2001-2002 Packet Design, LLC.
 * All rights reserved.
 * 
 * Subject to the following obligations and disclaimer of warranty,
 * use and redistribution of this software, in source or object code
 * forms, with or without modifications are expressly permitted by
 * Packet Design; provided, however, that:
 * 
 *    (i)  Any and all reproductions of the source or object code
 *         must include the copyright notice above and the following
 *         disclaimer of warranties; and
 *    (ii) No rights are granted, in any manner or form, to use
 *         Packet Design trademarks, including the mark "PACKET DESIGN"
 *         on advertising, endorsements, or otherwise except as such
 *         appears in the above copyright notice or in the software.
 * 
 * THIS SOFTWARE IS BEING PROVIDED BY PACKET DESIGN "AS IS", AND
 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, PACKET DESIGN MAKES NO
 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING
 * THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
 * OR NON-INFRINGEMENT.  PACKET DESIGN DOES NOT WARRANT, GUARANTEE,
 * OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS
 * OF THE USE OF THIS SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY,
 * RELIABILITY OR OTHERWISE.  IN NO EVENT SHALL PACKET DESIGN BE
 * LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING OUT OF ANY USE
 * OF THIS SOFTWARE, INCLUDING WITHOUT LIMITATION, ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL
 * DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF
 * USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
 * THE USE OF THIS SOFTWARE, EVEN IF PACKET DESIGN IS ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Author: Archie Cobbs <archie@freebsd.org>
 */

#ifndef _PDEL_PPP_PPP_BUNDLE_H_
#define _PDEL_PPP_PPP_BUNDLE_H_

/************************************************************************
			PUBLIC DECLARATIONS
************************************************************************/

struct ppp_eid;
struct ppp_node;
struct ppp_link;
struct ppp_bundle;
struct ppp_ipcp_req;
struct ppp_ccp_req;

#define PPP_BUNDLE_MAX_LOGNAME	32

/*
 * Bundle configuration structure
 *
 * If ip[PPP_SELF] is 0.0.0.0, we will accept whatever IP address the
 * peer requests for itself.  If the peer requests 0.0.0.0 and
 * ip[PPP_PEER] is 0.0.0.0, we close the bundle.
 */
struct ppp_bundle_config {
	struct in_addr		ip[2];		/* ip addrs, or 0.0.0.0 */
	struct in_addr		dns_servers[2];	/* dns servers for peer */
	struct in_addr		nbns_servers[2];/* nbns servers for peer */
	u_char			vjc;		/* enable vj compression */
	u_char			mppe_40;	/* enable 40 bit mppe */
	u_char			mppe_56;	/* enable 56 bit mppe */
	u_char			mppe_128;	/* enable 128 bit mppe */
	u_char			mppe_reqd;	/* ms encryption req'd */
	u_char			mppe_stateless;	/* stateless encryption */
	char			logname[PPP_BUNDLE_MAX_LOGNAME];
};

/************************************************************************
			PUBLIC FUNCTIONS
************************************************************************/

__BEGIN_DECLS

extern void	ppp_bundle_close(struct ppp_bundle *bundle);
extern void	ppp_bundle_destroy(struct ppp_bundle **bundlep);
extern const	char *ppp_bundle_get_authname(struct ppp_bundle *bundle,
			int dir);
extern void	ppp_bundle_get_eid(struct ppp_bundle *bundle,
			int dir, struct ppp_eid *eid);
extern int	ppp_bundle_get_multilink(struct ppp_bundle *bundle);
extern int	ppp_bundle_get_ipcp(struct ppp_bundle *bundle,
			struct ppp_ipcp_req *ipcp, int *is_up);
extern int	ppp_bundle_get_ccp(struct ppp_bundle *bundle,
			struct ppp_ccp_req *ccp, int *is_up);
extern int	ppp_bundle_get_links(struct ppp_bundle *bundle,
			struct ppp_link **list, int max);
extern void	*ppp_bundle_get_cookie(struct ppp_bundle *bundle);

#ifdef _PDEL_PPP_PRIVATE_H_

/************************************************************************
			PRIVATE FUNCTIONS
************************************************************************/

extern struct	ppp_bundle *ppp_bundle_create(struct ppp_engine *engine,
			struct ppp_link *link, struct ppp_node *node);
extern int	ppp_bundle_join(struct ppp_bundle *bundle,
			struct ppp_link *link, struct ppp_node *node,
			u_int16_t *link_num);
extern void	ppp_bundle_unjoin(struct ppp_bundle **bundlep,
                        struct ppp_link *link);
extern void	ppp_bundle_protorej(struct ppp_bundle *bundle, u_int16_t proto);
extern int	ppp_bundle_write(struct ppp_bundle *bundle, u_int link_num,
			u_int16_t proto, const void *data, size_t len);

#endif	/* _PDEL_PPP_PRIVATE_H_ */

__END_DECLS

#endif	/* _PDEL_PPP_PPP_BUNDLE_H_ */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>