Changeset 3a5d892f in mainline
- Timestamp:
- 2010-10-15T19:13:54Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 995689d1
- Parents:
- 779a47d
- Location:
- uspace
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/net_net.h
r779a47d r3a5d892f 27 27 */ 28 28 29 /** @addtogroup net30 * 29 /** @addtogroup libc 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * 35 * 34 * Networking subsystem central module messages. 35 * @see net_interface.h 36 36 */ 37 37 38 #ifndef __NET_NET_MESSAGES_H__39 #define __NET_NET_MESSAGES_H__38 #ifndef LIBC_NET_NET_MESSAGES_H_ 39 #define LIBC_NET_NET_MESSAGES_H_ 40 40 41 41 #include <ipc/ipc.h> 42 42 #include <ipc/net.h> 43 43 44 /** Networking subsystem central module messages. 45 */ 46 typedef enum{ 44 /** Networking subsystem central module messages. */ 45 typedef enum { 47 46 /** Returns the general configuration 48 * 47 * @see net_get_conf_req() 49 48 */ 50 49 NET_NET_GET_CONF = NET_FIRST, 51 50 /** Returns the device specific configuration 52 * 51 * @see net_get_device_conf_req() 53 52 */ 54 53 NET_NET_GET_DEVICE_CONF, 55 /** Starts the networking stack. 56 */ 54 /** Starts the networking stack. */ 57 55 NET_NET_STARTUP, 58 56 } net_messages; -
uspace/lib/net/generic/net_remote.c
r779a47d r3a5d892f 37 37 38 38 #include <ipc/services.h> 39 #include <ipc/net_net.h> 39 40 40 41 #include <malloc.h> … … 45 46 #include <net_interface.h> 46 47 #include <adt/measured_strings.h> 47 #include <net_net_messages.h>48 48 49 49 int net_connect_module(services_t service) -
uspace/srv/net/net/net.c
r779a47d r3a5d892f 48 48 #include <ipc/services.h> 49 49 #include <ipc/net.h> 50 #include <ipc/net_net.h> 50 51 #include <ipc/il.h> 51 52 … … 61 62 #include <net_interface.h> 62 63 #include <ip_interface.h> 63 #include <net_net_messages.h>64 64 65 65 #include "net.h" -
uspace/srv/net/netstart/netstart.c
r779a47d r3a5d892f 48 48 #include <ipc/ipc.h> 49 49 #include <ipc/services.h> 50 #include <ipc/net_net.h> 50 51 51 52 #include <net/modules.h> 52 #include <net_net_messages.h>53 53 54 54 #include "self_test.h"
Note:
See TracChangeset
for help on using the changeset viewer.