racket/collects/net/nntp-sig.ss
Eli Barzilay f17f7bc479 formatting etc
svn: r5045
2006-12-06 21:23:38 +00:00

19 lines
678 B
Scheme

(module nntp-sig (lib "a-signature.ss")
(struct communicator (sender receiver server port))
connect-to-server connect-to-server* disconnect-from-server
authenticate-user open-news-group
head-of-message body-of-message
newnews-since generic-message-command
make-desired-header extract-desired-headers
(struct nntp ())
(struct unexpected-response (code text))
(struct bad-status-line (line))
(struct premature-close (communicator))
(struct bad-newsgroup-line (line))
(struct non-existent-group (group))
(struct article-not-in-group (article))
(struct no-group-selected ())
(struct article-not-found (article))
(struct authentication-rejected ()))