git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3259 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
306 B
C
18 lines
306 B
C
/* net_protocol.h
|
|
* definitions of protocol networking module API
|
|
*/
|
|
|
|
#ifndef OBOS_NET_PROTOCOL_H
|
|
#define OBOS_NET_PROTOCOL_H
|
|
|
|
#include <drivers/module.h>
|
|
|
|
struct net_protocol_module_info {
|
|
module_info module;
|
|
|
|
};
|
|
|
|
#define NET_PROTOCOL_MODULE_ROOT "network/protocols/"
|
|
|
|
#endif /* OBOS_NET_PROTOCOL_H */
|