tools/adflib: build only host variant which is used by Sam440 target
[AROS.git] / workbench / network / stacks / AROSTCP / bsdsocket / net / netisr.h
blob046998142f92bd7dedf333b4df5435e4dd2e0002
1 /*
2 * Copyright (C) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
3 * Helsinki University of Technology, Finland.
4 * All rights reserved.
5 * Copyright (C) 2005 Neil Cafferkey
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19 * MA 02111-1307, USA.
23 #ifndef NET_NETISR_H
24 #define NET_NETISR_H
27 * Frame dispatchers set an appropriate protocol input queue bit
30 #define NETISR_RAW 0 /* same as AF_UNSPEC */
31 #define NETISR_IP 2 /* same as AF_INET */
32 #define NETISR_IMP 3 /* same as AF_IMPLINK */
33 #define NETISR_NS 6 /* same as AF_NS */
34 #define NETISR_ISO 7 /* same as AF_ISO */
35 #define NETISR_CCITT 10 /* same as AF_CCITT */
36 #define NETISR_ARP 31
38 void schednetisr(int isr);
39 void schednetisr_nosignal(int isr);
40 void net_poll(void);
42 #endif