Changeset 89ac5513 in mainline for uspace/srv/net/loopip/loopip.c
- Timestamp:
- 2013-06-23T19:54:53Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ddb1922
- Parents:
- 3abf0760 (diff), 96cbd18 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/loopip/loopip.c
r3abf0760 r89ac5513 50 50 static int loopip_send(iplink_srv_t *srv, iplink_srv_sdu_t *sdu); 51 51 static int loopip_get_mtu(iplink_srv_t *srv, size_t *mtu); 52 static int loopip_addr_add(iplink_srv_t *srv, iplink_srv_addr_t *addr);53 static int loopip_addr_remove(iplink_srv_t *srv, iplink_srv_addr_t *addr);52 static int loopip_addr_add(iplink_srv_t *srv, uint32_t addr); 53 static int loopip_addr_remove(iplink_srv_t *srv, uint32_t addr); 54 54 55 55 static void loopip_client_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg); … … 189 189 } 190 190 191 static int loopip_addr_add(iplink_srv_t *srv, iplink_srv_addr_t *addr)192 { 193 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_add(0x%" PRIx32 ")", addr ->ipv4);194 return EOK; 195 } 196 197 static int loopip_addr_remove(iplink_srv_t *srv, iplink_srv_addr_t *addr)198 { 199 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_remove(0x%" PRIx32 ")", addr ->ipv4);191 static int loopip_addr_add(iplink_srv_t *srv, uint32_t addr) 192 { 193 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_add(0x%" PRIx32 ")", addr); 194 return EOK; 195 } 196 197 static int loopip_addr_remove(iplink_srv_t *srv, uint32_t addr) 198 { 199 log_msg(LOG_DEFAULT, LVL_DEBUG, "loopip_addr_remove(0x%" PRIx32 ")", addr); 200 200 return EOK; 201 201 }
Note:
See TracChangeset
for help on using the changeset viewer.