blob: 0792dbf13e90ed1036b31b21264642d3103332a0 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#include <u.h>
#include <libc.h>
#include <bio.h>
#include <ip.h>
#include <plumb.h>
#include <thread.h>
#include <fcall.h>
#include <9p.h>
#include "dat.h"
#include "fns.h"
char *cookiefile;
char *mtpt = "/mnt/web";
char *service;
Ctl globalctl =
{
1, /* accept cookies */
1, /* send cookies */
10, /* redirect limit */
"webfs/2.0 (plan 9)" /* user agent */
};
void
usage(void)
{
fprint(2, "usage: webfs [-c cookies] [-m mtpt] [-s service]\n");
threadexitsall("usage");
}
#include <pool.h>
void
threadmain(int argc, char **argv)
{
rfork(RFNOTEG);
ARGBEGIN{
case 'd':
mainmem->flags |= POOL_PARANOIA|POOL_ANTAGONISM;
break;
case 'D':
chatty9p++;
break;
case 'c':
cookiefile = EARGF(usage());
break;
case 'm':
mtpt = EARGF(usage());
break;
case 's':
service = EARGF(usage());
break;
default:
usage();
}ARGEND
quotefmtinstall();
if(argc != 0)
usage();
plumbinit();
globalctl.useragent = estrdup(globalctl.useragent);
initcookies(cookiefile);
initurl();
initfs();
threadpostmountsrv(&fs, service, mtpt, MREPL);
threadexits(nil);
}
|