r13906@catbus: nickm | 2007-07-25 18:49:50 -0400

Patch from tup: correct grammar for asynchonous reply lines in control-spec.txt


svn:r10931
This commit is contained in:
Nick Mathewson 2007-07-25 22:56:58 +00:00
parent a8821e2d82
commit 5b82188333

View File

@ -62,14 +62,16 @@ $Id$
2.3. Replies from Tor to the controller
Reply = *(MidReplyLine / DataReplyLine) EndReplyLine
Reply = SyncReply / AsyncReply
SyncReply = *(MidReplyLine / DataReplyLine) EndReplyLine
AsyncReply = *MidReplyLine EndReplyLine / DataReplyLine
MidReplyLine = "-" ReplyLine
DataReplyLine = "+" ReplyLine Data
EndReplyLine = SP ReplyLine
ReplyLine = StatusCode [ SP ReplyText ] CRLF
MidReplyLine = StatusCode "-" ReplyLine
DataReplyLine = StatusCode "+" ReplyLine Data
EndReplyLine = StatusCode SP ReplyLine
ReplyLine = [ReplyText] CRLF
ReplyText = XXXX
StatusCode = XXXX
StatusCode = 3DIGIT
Specific replies are mentioned below in section 3, and described more fully
in section 4.