Merge remote-tracking branch 'isis/bug20201'

This commit is contained in:
Nick Mathewson 2016-09-21 12:20:33 -04:00
commit f6d7b71719

View File

@ -5451,10 +5451,14 @@ bridge_line_free(bridge_line_t *bridge_line)
tor_free(bridge_line); tor_free(bridge_line);
} }
/** Read the contents of a Bridge line from <b>line</b>. Return 0 /** Parse the contents of a string, <b>line</b>, containing a Bridge line,
* if the line is well-formed, and -1 if it isn't. If * into a bridge_line_t.
* <b>validate_only</b> is 0, and the line is well-formed, then add *
* the bridge described in the line to our internal bridge list. * Validates that the IP:PORT, fingerprint, and SOCKS arguments (given to the
* Pluggable Transport, if a one was specified) are well-formed.
*
* Returns NULL If the Bridge line could not be validated, and returns a
* bridge_line_t containing the parsed information otherwise.
* *
* Bridge line format: * Bridge line format:
* Bridge [transport] IP:PORT [id-fingerprint] [k=v] [k=v] ... * Bridge [transport] IP:PORT [id-fingerprint] [k=v] [k=v] ...