summaryrefslogtreecommitdiff
path: root/src/lib/encoding/kvline.h
AgeCommit message (Collapse)Author
2020-01-08It's 2020. Update the copyright dates with "make update-copyright"Nick Mathewson
2019-12-08add KV_RAW to kvline.cTaylor Yu
Add the KV_RAW flag to kvline_encode(). This allows generation of output that is compatible with some quirks of the control protocol. Part of #30984.
2019-04-25Add rudimentary qstring support to kvline.cNick Mathewson
2019-04-25kvline: handle empty alues as well as empty keysNick Mathewson
The two options are mutually exclusive, since otherwise an entry like "Foo" would be ambiguous. We want to have the ability to treat entries like this as keys, though, since some controller commands interpret them as flags.
2019-01-16Bump copyright date to 2019Nick Mathewson
2018-12-12Add code to parse K=V lines into config_line_t format.Nick Mathewson
Closes ticket 28755