blob: 1df1a90e284807f9690997d460ddd7c036b442e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <thread.h>
#include "dat.h"
#include "fns.h"
int debug;
void
usage(void)
{
fprint(2, "usage: %s [-d] addr username password\n", argv0);
exits("usage");
}
void
threadmain(int argc, char *argv[])
{
Sip *sip;
char *addr;
int fd;
SIPfmtinstall();
ARGBEGIN{
default: usage();
case 'd':
debug++;
break;
}ARGEND;
if(argc != 3)
usage();
addr = netmkaddr(argv[0], "udp", "sip");
if(debug)
fprint(2, "connecting to %s\n", addr);
fd = dial(addr, nil, nil, nil);
if(fd < 0)
sysfatal("couldn't establish the connection");
if(debug)
fprint(2, "connection established\n");
sip = mksip(fd);
if(sip == nil)
sysfatal("mksip: %r");
sip->reg(sip, argv[1], argv[2]);
rmsip(sip);
threadexitsall(nil);
}
|