Changeset f1938c6 in mainline for uspace/lib/net
- Timestamp:
- 2011-01-17T15:41:30Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a2d8d59, ffaba00
- Parents:
- 9f3864a
- Location:
- uspace/lib/net
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/icmp_remote.h
r9f3864a rf1938c6 27 27 */ 28 28 29 /** @addtogroup libnet 29 /** @addtogroup libnet 30 30 * @{ 31 31 */ 32 32 33 #ifndef LIBNET_ICMP_ INTERFACE_H_34 #define LIBNET_ICMP_ INTERFACE_H_33 #ifndef LIBNET_ICMP_REMOTE_H_ 34 #define LIBNET_ICMP_REMOTE_H_ 35 35 36 36 #include <net/socket_codes.h> … … 54 54 extern int icmp_source_quench_msg(int, packet_t *); 55 55 extern int icmp_time_exceeded_msg(int, icmp_code_t, packet_t *); 56 extern int icmp_parameter_problem_msg(int, icmp_code_t, icmp_param_t, packet_t *); 56 extern int icmp_parameter_problem_msg(int, icmp_code_t, icmp_param_t, 57 packet_t *); 57 58 58 59 /*@}*/ -
uspace/lib/net/include/tl_skel.h
r9f3864a rf1938c6 61 61 extern int tl_initialize(int net_phone); 62 62 63 /** Per-connection module initialization. 64 * 65 * This has to be implemented in user code. 66 * 67 */ 68 extern void tl_connection(void); 69 63 70 /** Process the transport layer module message. 64 71 * … … 74 81 * 75 82 */ 76 extern int tl_m odule_message(ipc_callid_t, ipc_call_t *,83 extern int tl_message(ipc_callid_t, ipc_call_t *, 77 84 ipc_call_t *, size_t *); 78 85 -
uspace/lib/net/tl/icmp_remote.c
r9f3864a rf1938c6 33 33 /** @file 34 34 * ICMP interface implementation for remote modules. 35 * @see icmp_ interface.h35 * @see icmp_remote.h 36 36 */ 37 37 38 #include <icmp_ interface.h>38 #include <icmp_remote.h> 39 39 #include <net/modules.h> 40 40 #include <packet_client.h> -
uspace/lib/net/tl/tl_common.c
r9f3864a rf1938c6 27 27 */ 28 28 29 /** @addtogroup libnet 29 /** @addtogroup libnet 30 30 * @{ 31 31 */ … … 39 39 #include <packet_client.h> 40 40 #include <packet_remote.h> 41 #include <icmp_ interface.h>41 #include <icmp_remote.h> 42 42 #include <ip_remote.h> 43 43 #include <ip_interface.h> -
uspace/lib/net/tl/tl_skel.c
r9f3864a rf1938c6 56 56 ipc_answer_0(iid, EOK); 57 57 58 /* Per-connection initialization */ 59 tl_connection(); 60 58 61 while (true) { 59 62 ipc_call_t answer; … … 68 71 69 72 /* Process the message */ 70 int res = tl_module_message(callid, &call, &answer, 71 &count); 73 int res = tl_message(callid, &call, &answer, &count); 72 74 73 75 /*
Note:
See TracChangeset
for help on using the changeset viewer.