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
Drop nodes with same ID but different address.
[brdnet.git]
/
brodnetd.pas
blob
2d7055c54b9cb5452d608f17ebfa4f2862eb174f
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
;
15
16
BEGIN
17
ServerLoop
.
Main
;
18
END
.