Changeset 638 for Whitix/branches
- Timestamp:
- 06/24/08 14:02:00 (5 months ago)
- Location:
- Whitix/branches/network/net/inet
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/network/net/inet/eth.c
r620 r638 38 38 int i; 39 39 40 printf("source = "); 40 /* Copy to all the raw sockets in existence. */ 41 RawAddPacket(sockBuff); 41 42 42 for (i=0; i<6; i++) 43 printf("%#X:", ethHeader->source.c[i]); 43 // printf("source = "); 44 45 // for (i=0; i<6; i++) 46 // printf("%#X:", ethHeader->source.c[i]); 44 47 45 48 sockBuff->start=sockBuff->data+sizeof(struct EthHeader); … … 51 54 break; 52 55 53 default:54 printf("type = %#X\n", type);56 // default: 57 // printf("type = %#X\n", type); 55 58 } 56 59 } -
Whitix/branches/network/net/inet/ipv4.c
r582 r638 26 26 void IpRecv(struct SocketBuffer* sockBuff) 27 27 { 28 printf("IpRecv\n");28 struct IpHeader* ipHeader=(struct IpHeader*)sockBuff->start; 29 29 }