Changes in uspace/srv/net/net/net_standalone.c [d0d1f4f:f63a591d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net_standalone.c
rd0d1f4f rf63a591d 28 28 29 29 /** @addtogroup net 30 * @{30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * Wrapper for the standalone networking module.34 * Wrapper for the standalone networking module. 35 35 */ 36 36 37 #include "net.h"37 #include <str.h> 38 38 39 #include <str.h>40 #include <adt/measured_strings.h>41 #include <adt/module_map.h>42 39 #include <ipc/ipc.h> 43 40 #include <ipc/net.h> 44 41 45 42 #include <ip_interface.h> 43 #include <adt/measured_strings.h> 44 #include <adt/module_map.h> 46 45 #include <packet_server.h> 47 46 48 /** Networking module global data. */ 47 #include "net.h" 48 49 /** Networking module global data. 50 */ 49 51 extern net_globals_t net_globals; 50 52 … … 58 60 * 59 61 */ 60 int net_initialize_build(async_client_conn_t client_connection) 61 { 62 int net_initialize_build(async_client_conn_t client_connection){ 62 63 ERROR_DECLARE; 63 64
Note:
See TracChangeset
for help on using the changeset viewer.