Remove mymac stuff from device.c.

This commit is contained in:
Guus Sliepen 2003-06-11 19:28:38 +00:00
parent 31f17d4334
commit 12de5a8eed
10 changed files with 21 additions and 112 deletions

View file

@ -17,7 +17,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: device.c,v 1.1.2.11 2002/09/10 21:29:42 guus Exp $
$Id: device.c,v 1.1.2.12 2003/06/11 19:28:38 guus Exp $
*/
@ -57,8 +57,6 @@ char *device_info = NULL;
int device_total_in = 0;
int device_total_out = 0;
subnet_t mymac;
int setup_device(void)
{
int ip_fd = -1, if_fd = -1;
@ -120,16 +118,6 @@ int setup_device(void)
device_info = _("Solaris tun device");
/* Set default MAC address for ethertap devices */
mymac.type = SUBNET_MAC;
mymac.net.mac.address.x[0] = 0xfe;
mymac.net.mac.address.x[1] = 0xfd;
mymac.net.mac.address.x[2] = 0x00;
mymac.net.mac.address.x[3] = 0x00;
mymac.net.mac.address.x[4] = 0x00;
mymac.net.mac.address.x[5] = 0x00;
syslog(LOG_INFO, _("%s is a %s"), device, device_info);
return 0;
@ -154,8 +142,6 @@ int read_packet(vpn_packet_t *packet)
return -1;
}
memcpy(packet->data, mymac.net.mac.address.x, 6);
memcpy(packet->data + 6, mymac.net.mac.address.x, 6);
packet->data[12] = 0x08;
packet->data[13] = 0x00;