[plt-scheme] nntp-unit.ss suggestion: Code 201 is OK too
Thanks for pointing that out. I've committed the change.
Robby
At Fri, 26 Jul 2002 09:36:48 GMT, MJ Ray wrote:
> [Please handle PLT Scheme list administrative tasks through the Web:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme]
>
>
> In collects/net/nntp-unit.ss, a news server sending code 201 upon connection
> causes an exception. This code only means "OK, but you may not post" and it
> is still useful to continue in some situations. If the following change is
> made to nntp-unit.ss, it works. Can it be committed, please?
>
>
> (define connect-to-server
> [...]
> (case code
> ((200)
> communicator)
> ((201)
> communicator)
>
> Thanks,
>
> MJR
>