- Removed unused MAC strip/add functions.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 4 Nov 2000 10:37:27 +0000 (10:37 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 4 Nov 2000 10:37:27 +0000 (10:37 +0000)
src/net.c

index 049f28e..fb15b5e 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: net.c,v 1.35.4.58 2000/11/03 22:33:16 zarq Exp $
+    $Id: net.c,v 1.35.4.59 2000/11/04 10:37:27 guus Exp $
 */
 
 #include "config.h"
 */
 
 #include "config.h"
@@ -78,32 +78,6 @@ char *interface_name = NULL;  /* Contains the name of the interface */
 
 subnet_t mymac;
 
 
 subnet_t mymac;
 
-/*
-  strip off the MAC adresses of an ethernet frame
-*/
-void strip_mac_addresses(vpn_packet_t *p)
-{
-cp
-  memmove(p->data, p->data + 12, p->len -= 12);
-cp
-}
-
-/*
-  reassemble MAC addresses
-*/
-void add_mac_addresses(vpn_packet_t *p)
-{
-cp
-  memcpy(p->data + 12, p->data, p->len);
-  p->len += 12;
-  p->data[0] = p->data[6] = 0xfe;
-  p->data[1] = p->data[7] = 0xfd;
-  /* Really evil pointer stuff just below! */
-  *((ip_t*)(&p->data[2])) = (ip_t)(htonl(myself->address));
-  *((ip_t*)(&p->data[8])) = *((ip_t*)(&p->data[26]));
-cp
-}
-
 /*
   Execute the given script.
   This function doesn't really belong here.
 /*
   Execute the given script.
   This function doesn't really belong here.