48b8f1d52e3fb787c0de811aefedc2dfd6335c72
Stefan Schuermans implementation of ethernet...

Stefan Schuermans authored 12 years ago

1) #include "config.h"
2) #include "macros.h"
3) #include "nethelp.h"
4) 
5) // MAC address
6) /* extern */ struct config_mac config_mac = {
7)   .mac = { 0x02, 0x4D, 0x49, 0x50, 0x53, 0x01 }
8) };
9) 
10) // IP configuration
11) /* extern */ struct config_ip config_ip = {
12)   .ip = { 192, 168, 0, 89 },
Stefan Schuermans fix subnet mask

Stefan Schuermans authored 12 years ago

13)   .mask = { 255, 255, 255, 0 },