]> git.lizzy.rs Git - plan9front.git/blob - sys/src/cmd/cwfs/9netics64.8k/conf.c
Import sources from 2011-03-30 iso image
[plan9front.git] / sys / src / cmd / cwfs / 9netics64.8k / conf.c
1 /* 9net64.8k-specific configuration */
2
3 #include "all.h"
4
5 #ifndef DATE
6 #define DATE 1170808167L
7 #endif
8
9 Timet   fs_mktime = DATE;                       /* set by mkfile */
10
11 Startsb startsb[] = {
12         "main",         2,
13         nil,
14 };
15
16 void
17 localconfinit(void)
18 {
19         conf.nodump = 0;
20         conf.dumpreread = 0;
21         conf.firstsb = 0;       /* time- & jukebox-dependent optimisation */
22         conf.recovsb = 0;
23         conf.nlgmsg = 1100;     /* @8576 bytes, for packets */
24         conf.nsmmsg = 500;      /* @128 bytes */
25 }
26
27 int (*fsprotocol[])(Msgbuf*) = {
28         /* 64-bit file servers can't serve 9P1 correctly: NAMELEN is too big */
29         serve9p2,
30         nil,
31 };