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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
name: presence
version: 0.0.1
cabal-version: >=1.10
build-type: Simple
license: AllRightsReserved
synopsis: XMPP Server which detects unix logins
description: When users login to your localhost, their presence is detected and announced
to connected xmpp clients. presence is a modern XMPP variant of the old Unix Talk
program. Eventually, this will be expanded to become a peer-to-peer service allowing
xmpp instant messaging between separate computers as well. And somewhere down the
road, extended again to make use of Jingle to facilitate VOIP.
author: Joe Crayne
data-dir: ""
library
cpp-options: -DRENDERFLUSH
c-sources: Presence/monitortty.c
hs-source-dirs: . Presence
ghc-options: -O2 -fwarn-unused-binds
hs-source-dirs: . Presence
build-depends:
base,
binary,
blaze-builder,
bytestring,
conduit (>=1.0.4),
conduit-extra,
containers,
cpu,
deepseq,
directory,
filepath,
hinotify,
mtl,
network,
process,
random,
resourcet,
stm,
template-haskell,
text (>=0.11.2.0),
time,
transformers,
unix,
void,
xml-conduit,
xml-types
exposed-modules:
ByteStringOperators,
ClientState,
ConfigFiles,
ConnectionKey,
ConsoleWriter,
Control.Concurrent.STM.StatusCache,
Control.Concurrent.STM.UpdateStream,
ControlMaybe,
Data.BitSyntax,
DNSCache,
EventUtil,
FGConsole,
GetHostByAddr,
LocalPeerCred,
LockedChan,
Logging,
Nesting,
Paths,
PeerResolve,
Server,
SockAddr,
SocketLike,
TraversableT,
UTmp,
XMPPServer
executable presence
main-is: xmppServer.hs
buildable: True
cpp-options: -DRENDERFLUSH
hs-source-dirs: .
ghc-options: -O2 -fwarn-unused-binds -threaded
build-depends:
base, presence,
bytestring,
containers,
cpu,
mtl,
network,
resourcet,
stm,
text (>=0.11.2.0),
transformers,
unix,
xml-types
executable whosocket
main-is: whosocket.hs
hs-source-dirs: .
cpp-options: -DRENDERFLUSH
ghc-options: -O2 -fwarn-unused-binds -threaded
build-depends:
base, presence,
bytestring,
cpu,
directory,
network,
unix
executable nalias2
main-is: nalias2.hs
hs-source-dirs: .
ghc-options: -O2 -fwarn-unused-binds -threaded
build-depends: base, presence, text (>=0.11.2.0)
executable consolation
main-is: consolation.hs
hs-source-dirs: .
ghc-options: -O2 -fwarn-unused-binds -threaded
cpp-options: -DRENDERFLUSH
build-depends:
base, presence,
bytestring,
containers,
cpu,
mtl,
network,
resourcet,
stm,
text (>=0.11.2.0),
transformers,
unix,
xml-types
main-is: xmppServer.hs
executable pwrite
main-is: pwrite.hs
hs-source-dirs: .
ghc-options: -O2 -fwarn-unused-binds -threaded
build-depends:
base,
presence,
text (>=0.11.2.0),
unix
-- [ ] ConduitServer.hs:main = mainC
-- [ ] Control/Concurrent/STM/StatusCache.hs:-- > main = do q <- atomically $ Cache.new (== '(') (==')')
-- [ ] Control/Concurrent/STM/UpdateStream.hs:-- > main = do
-- [ ] Presence/Server.hs:-- > main = runResourceT $ do
-- [ ] Presence/main.hs:main = do
-- [x] consolation.hs:main = do
-- [ ] nalias.hs:main = do
-- [x] nalias2.hs:main = do
-- [x] pwrite.hs:main = do
-- [ ] simplechat.hs:main = do
-- [ ] test-server.hs:main = do
-- [x] whosocket.hs:main = do
-- [x] xmppServer.hs:main = runResourceT $ do
|