repo.or.cz
/
brdnet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
The Upload (FS) shoud work. Not tested.
[brdnet.git]
/
brodnetd.pas
blob
731a84a78ac814ac4d34eaa4053ba34601d00d51
1
PROGRAM
brodnetd
;
2
3
{ Poll loop. Read message, get handler, exec handler. }
4
uses
cthreads
,
ServerLoop
5
,
TestWatch
6
,
TestChat
7
,
AsyncProcess
8
,
Upload
9
,
Download
10
,
TestFS
11
,
dht
12
,
dhtBootStatic
13
,
dhtPersist
14
,
ECC
15
;
16
17
BEGIN
18
ServerLoop
.
Main
;
19
END
.