Cleanup in elf.c with .bss section clean; adm command mounts cdrom instead of floppy...
[ZeXOS.git] / kernel / include / net / packet.h
blob67a16afe7346ab008998409721f90c57b8042976
1 /*
2 * ZeX/OS
3 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef _PACKET_H
20 #define _PACKET_H
22 #define NET_PACKET_TYPE_IPV6 0xdd86
23 #define NET_PACKET_TYPE_IPV4 0x8
24 #define NET_PACKET_TYPE_STP 0x2600
25 #define NET_PACKET_TYPE_ARP 0x608
27 typedef struct packet_t {
28 mac_addr_t mac_dest;
29 mac_addr_t mac_source;
30 unsigned short type;
31 } packet_t;
34 extern unsigned net_packet_send (netif_t *netif, packet_t *packet, char *buf, unsigned len);
35 extern unsigned init_packet ();
37 #endif