Changeset 0a866eeb in mainline for uspace/lib/net/include
- Timestamp:
- 2010-10-08T19:45:11Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c69d327
- Parents:
- d52fbaf
- Location:
- uspace/lib/net/include
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/il_interface.h
rd52fbaf r0a866eeb 46 46 #include <net_device.h> 47 47 #include <packet/packet.h> 48 #include <packet /packet_client.h>48 #include <packet_client.h> 49 49 #include <il_messages.h> 50 50 -
uspace/lib/net/include/netif_interface.h
rd52fbaf r0a866eeb 53 53 54 54 #include <netif_remote.h> 55 #include <packet /packet_client.h>55 #include <packet_client.h> 56 56 57 57 #define netif_module_message netif_module_message_standalone -
uspace/lib/net/include/packet_client.h
rd52fbaf r0a866eeb 172 172 * @returns Other error codes as defined for the packet_return() function. 173 173 */ 174 extern int packet_translate_ local(int phone, packet_ref packet, packet_id_t packet_id);174 extern int packet_translate_remote(int phone, packet_ref packet, packet_id_t packet_id); 175 175 176 176 /** Obtains the packet of the given dimensions. … … 184 184 * @returns NULL on error. 185 185 */ 186 extern packet_t packet_get_4_ local(int phone, size_t max_content, size_t addr_len, size_t max_prefix, size_t max_suffix);186 extern packet_t packet_get_4_remote(int phone, size_t max_content, size_t addr_len, size_t max_prefix, size_t max_suffix); 187 187 188 188 /** Obtains the packet of the given content size. … … 193 193 * @returns NULL on error. 194 194 */ 195 extern packet_t packet_get_1_ local(int phone, size_t content);195 extern packet_t packet_get_1_remote(int phone, size_t content); 196 196 197 197 /** Releases the packet queue. … … 202 202 * @param[in] packet_id The packet identifier. 203 203 */ 204 extern void pq_release_ local(int phone, packet_id_t packet_id);204 extern void pq_release_remote(int phone, packet_id_t packet_id); 205 205 206 206 /** Returns the packet copy. -
uspace/lib/net/include/tl_interface.h
rd52fbaf r0a866eeb 44 44 #include <net_device.h> 45 45 #include <packet/packet.h> 46 #include <packet /packet_client.h>46 #include <packet_client.h> 47 47 #include <tl_messages.h> 48 48
Note:
See TracChangeset
for help on using the changeset viewer.