Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/planix-v0/sys/src/cmd/ip/dhcpd/testping.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include <u.h>
2
#include <libc.h>
3
#include <ip.h>
4
#include <bio.h>
5
#include <ndb.h>
6
#include "dat.h"
7
 
8
char	*blog = "ipboot";
9
 
10
void
11
main(int argc, char **argv)
12
{
13
	fmtinstall('E', eipconv);
14
	fmtinstall('I', eipconv);
15
 
16
	if(argc < 2)
17
		exits(0);
18
	if(icmpecho(argv[1]))
19
		fprint(2, "%s live\n", argv[1]);
20
	else
21
		fprint(2, "%s doesn't answer\n", argv[1]);
22
}