Changeset df15e5f in mainline for uspace/srv/ethip/ethip_nic.c
- Timestamp:
- 2012-02-12T20:09:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd8bfc5a
- Parents:
- 4f64a523
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ethip/ethip_nic.c
r4f64a523 rdf15e5f 198 198 } 199 199 200 #include <stdio.h> 200 201 static void ethip_nic_received(ethip_nic_t *nic, ipc_callid_t callid, 201 202 ipc_call_t *call) … … 212 213 return; 213 214 } 215 216 log_msg(LVL_DEBUG, "Ethernet PDU contents (%zu bytes)", 217 size); 218 size_t i; 219 for (i = 0; i < size; i++) 220 printf("%02x ", ((uint8_t *)data)[i]); 221 printf("\n"); 214 222 215 223 log_msg(LVL_DEBUG, "call ethip_received");
Note:
See TracChangeset
for help on using the changeset viewer.