Commit 20f65265 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

man: Add missing sections to the vtc(7) manual

parent 63db35d0
......@@ -913,6 +913,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
n = 0;
/* SECTION: stream.spec.zexpect.ping PING specific
*
* ping.data
* The 8-bytes string of the PING frame payload.
* ping.ack (PING)
......@@ -928,6 +929,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
return (buf);
}
/* SECTION: stream.spec.zexpect.winup WINDOW_UPDATE specific
*
* winup.size
* The size of the upgrade given by the WINDOW_UPDATE frame.
*/
......@@ -936,6 +938,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
RETURN_BUFFED(f->md.winup_size);
}
/* SECTION: stream.spec.zexpect.prio PRIORITY specific
*
* prio.stream
* The stream ID announced.
*
......@@ -959,6 +962,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
RETURN_BUFFED(f->md.prio.weight);
}
/* SECTION: stream.spec.zexpect.rst RESET_STREAM specific
*
* rst.err
* The error code (as integer) of the RESET_STREAM frame.
*/
......@@ -1013,6 +1017,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
if (!strcmp(spec, "hdrsize")) { RETURN_SETTINGS(6); }
}
/* SECTION: stream.spec.zexpect.push PUSH_PROMISE specific
*
* push.id
* The id of the promised stream.
*/
......@@ -1021,6 +1026,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
RETURN_BUFFED(f->md.promised);
}
/* SECTION: stream.spec.zexpect.goaway GOAWAY specific
*
* goaway.err
* The error code (as integer) of the GOAWAY frame.
*
......@@ -1042,6 +1048,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
return (f->md.goaway.debug);
}
/* SECTION: stream.spec.zexpect.zframe Generic frame
*
* frame.data
* Payload of the last frame
*
......@@ -1077,6 +1084,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
}
}
/* SECTION: stream.spec.zexpect.zstream Stream
*
* stream.window
* The current window size of the stream, or, if on stream 0,
* of the connection.
......@@ -1107,6 +1115,7 @@ cmd_var_resolve(const struct stream *s, const char *spec, char *buf)
return (NULL);
}
/* SECTION: stream.spec.zexpect.ztable Index tables
*
* tbl.dec.size / tbl.enc.size
* Size (bytes) of the decoding/encoding table.
*
......
......@@ -36,7 +36,7 @@ import re
def parse_file(fn, cl, tl, sl):
p = False
section = ""
resec = re.compile("[ /]\* SECTION: ")
resec = re.compile("\s*/\* SECTION: ")
f = open(fn, "r", encoding="UTF-8")
......@@ -50,13 +50,13 @@ def parse_file(fn, cl, tl, sl):
cl[section] = []
if len(a) > 3:
tl[section] = re.sub(
r"^[\t ]*\/?\* SECTION: [^ ]+ +",
r"^\s*/?\* SECTION: [^ ]+ +",
"", l)
else:
tl[section] = ""
p = 1
elif p:
cl[section].append(re.sub(r"^ \* ?", "", l))
cl[section].append(re.sub(r"^\s*\* ?", "", l))
f.close()
if __name__ == "__main__":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment