summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/pppd/eui64.c
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-13 18:38:22 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-13 18:38:22 +0000
commit21e436f23516b42efcb18ce9d3b742a10ad7d7d1 (patch)
tree4945c6a3444f6ae15a9a1c082643f27364d3ea54 /mdk-stage1/ppp/pppd/eui64.c
parent416724d23b6a1eb192e11a0ed75722c307f0f241 (diff)
downloaddrakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.gz
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.bz2
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.xz
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.zip
kill 10 years old snapshot of pppd & pppoe
(now using upstream pppd & pppoe)
Diffstat (limited to 'mdk-stage1/ppp/pppd/eui64.c')
-rw-r--r--mdk-stage1/ppp/pppd/eui64.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/mdk-stage1/ppp/pppd/eui64.c b/mdk-stage1/ppp/pppd/eui64.c
deleted file mode 100644
index a18c43a27..000000000
--- a/mdk-stage1/ppp/pppd/eui64.c
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- eui64.c - EUI64 routines for IPv6CP.
- Copyright (C) 1999 Tommi Komulainen <Tommi.Komulainen@iki.fi>
-
- 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 Tommi Komulainen. The name of the author 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.
-
-
- $Id: eui64.c 195720 2001-06-11 11:44:34Z gc $
-*/
-
-#define RCSID "$Id: eui64.c 195720 2001-06-11 11:44:34Z gc $"
-
-#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;
-}