35 lines
607 B
C
35 lines
607 B
C
|
/*
|
||
|
io.c
|
||
|
|
||
|
Copyright 1995 Philip Homburg
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "inet.h"
|
||
|
#include "io.h"
|
||
|
|
||
|
PUBLIC void writeIpAddr(addr)
|
||
|
ipaddr_t addr;
|
||
|
{
|
||
|
#define addrInBytes ((u8_t *)&addr)
|
||
|
|
||
|
printf("%d.%d.%d.%d", addrInBytes[0], addrInBytes[1],
|
||
|
addrInBytes[2], addrInBytes[3]);
|
||
|
#undef addrInBytes
|
||
|
}
|
||
|
|
||
|
PUBLIC void writeEtherAddr(addr)
|
||
|
ether_addr_t *addr;
|
||
|
{
|
||
|
#define addrInBytes ((u8_t *)addr->ea_addr)
|
||
|
|
||
|
printf("%x:%x:%x:%x:%x:%x", addrInBytes[0], addrInBytes[1],
|
||
|
addrInBytes[2], addrInBytes[3], addrInBytes[4], addrInBytes[5]);
|
||
|
#undef addrInBytes
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* $PchId: io.c,v 1.5 1995/11/21 06:45:27 philip Exp $
|
||
|
*/
|