diff options
| author | Paul Traina <pst@FreeBSD.org> | 1994-09-30 05:45:07 +0000 |
|---|---|---|
| committer | Paul Traina <pst@FreeBSD.org> | 1994-09-30 05:45:07 +0000 |
| commit | 44099b7b1ec9c9295687eba077be6ad2931d292d (patch) | |
| tree | 063b400e64a6e0b8dc8cceade3c202711afca9df /libexec/bootpd/trygetea.c | |
| parent | e56de50e266f4436821583e104f44ad208123f49 (diff) | |
Notes
Diffstat (limited to 'libexec/bootpd/trygetea.c')
| -rw-r--r-- | libexec/bootpd/trygetea.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/libexec/bootpd/trygetea.c b/libexec/bootpd/trygetea.c new file mode 100644 index 000000000000..e9314aede96d --- /dev/null +++ b/libexec/bootpd/trygetea.c @@ -0,0 +1,46 @@ +/* + * trygetea.c - test program for getether.c + */ + +#include <sys/types.h> +#include <sys/socket.h> + +#if defined(SUNOS) || defined(SVR4) +#include <sys/sockio.h> +#endif + +#include <net/if.h> /* for struct ifreq */ +#include <netinet/in.h> +#include <arpa/inet.h> /* inet_ntoa */ + +#include <netdb.h> +#include <stdio.h> +#include <ctype.h> +#include <errno.h> + +int debug = 0; +char *progname; + +main(argc, argv) + char **argv; +{ + u_char ea[16]; /* Ethernet address */ + int i; + + progname = argv[0]; /* for report */ + + if (argc < 2) { + printf("need interface name\n"); + exit(1); + } + if ((i = getether(argv[1], ea)) < 0) { + printf("Could not get Ethernet address (rc=%d)\n", i); + exit(1); + } + printf("Ether-addr"); + for (i = 0; i < 6; i++) + printf(":%x", ea[i] & 0xFF); + printf("\n"); + + exit(0); +} |
