2005-04-16 16:20:36 -06:00
|
|
|
/*
|
|
|
|
* ppp_defs.h - PPP definitions.
|
|
|
|
*
|
2012-03-04 05:54:54 -07:00
|
|
|
* Copyright 1994-2000 Paul Mackerras.
|
2005-04-16 16:20:36 -06:00
|
|
|
*
|
2012-03-04 05:54:54 -07:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 as published by the Free Software Foundation.
|
2005-04-16 16:20:36 -06:00
|
|
|
*/
|
|
|
|
#ifndef _PPP_DEFS_H_
|
|
|
|
#define _PPP_DEFS_H_
|
|
|
|
|
2006-05-04 05:07:37 -06:00
|
|
|
#include <linux/crc-ccitt.h>
|
2012-10-13 03:46:48 -06:00
|
|
|
#include <uapi/linux/ppp_defs.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2012-10-13 03:46:48 -06:00
|
|
|
#define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif /* _PPP_DEFS_H_ */
|