Start adding the networking headers in their correct place and with

the correct things in them.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@64 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
David Reid
2002-07-10 22:10:23 +00:00
parent 07fefdf493
commit cda78f2486
4 changed files with 100 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/* raw_module.h
*/
#ifndef RAW_MODULE_H
#define RAW_MODULE_H
#include "net_module.h"
#ifdef _KERNEL_
#include <KernelExport.h>
#define RAW_MODULE_PATH "network/protocol/raw"
#else
#define RAW_MODULE_PATH "modules/protocols/raw"
#endif
struct raw_module_info {
struct kernel_net_module_info info;
void (*input)(struct mbuf *, int);
};
#endif /* RAW_MODULE_H */