summaryrefslogtreecommitdiff
path: root/pppd/eui64.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2000-08-01 01:38:30 +0000
committerPaul Mackerras <paulus@samba.org>2000-08-01 01:38:30 +0000
commitc65dfbde7e6096272ffacd1c69f444b36a4b707a (patch)
tree77563b0b2d7223f4035759a545d53a7bd12a2adb /pppd/eui64.c
parentdf24fbb118751573203c069db28539ad89a62fd1 (diff)
downloadppp-c65dfbde7e6096272ffacd1c69f444b36a4b707a.tar.gz
add stuff for packet filtering
remove IPV6 stuff because it was GPL'd
Diffstat (limited to 'pppd/eui64.c')
-rw-r--r--pppd/eui64.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/pppd/eui64.c b/pppd/eui64.c
deleted file mode 100644
index 2ffde13..0000000
--- a/pppd/eui64.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- eui64.c - EUI64 routines for IPv6CP.
- Copyright (C) 1999 Tommi Komulainen <Tommi.Komulainen@iki.fi>
-
- This program 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 of the License, or
- (at your option) any later version.
-
- This program 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 this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-
- $Id: eui64.c,v 1.3 1999/08/25 04:15:51 paulus Exp $
-*/
-
-#define RCSID "$Id: eui64.c,v 1.3 1999/08/25 04:15:51 paulus Exp $"
-
-#include "pppd.h"
-
-static const char rcsid[] = RCSID;
-
-/*
- * eui64_ntoa - Make an ascii representation of an interface identifier
- */
-char *
-eui64_ntoa(e)
- eui64_t e;
-{
- static char buf[32];
-
- snprintf(buf, 32, "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
- e.e8[0], e.e8[1], e.e8[2], e.e8[3],
- e.e8[4], e.e8[5], e.e8[6], e.e8[7]);
- return buf;
-}