mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Finally remove deprecated-since-0.1.2.4-alpha EXTENDED_FORMAT synonym for EXTENDED_EVENTS
svn:r17538
This commit is contained in:
parent
3841e1b230
commit
a7b4a7b9f8
@ -1,7 +1,9 @@
|
|||||||
Changes in version 0.2.1.9-alpha - 200?-??-??
|
Changes in version 0.2.1.9-alpha - 200?-??-??
|
||||||
|
|
||||||
o Minor features (controller):
|
o Minor features (controller):
|
||||||
- New CONSENSUS_ARRIVED event
|
- New CONSENSUS_ARRIVED event to note when a new consensus has
|
||||||
|
been fetched and validated.
|
||||||
|
- Finally remove deprecated "EXTENEDED_FORMAT" feature.
|
||||||
|
|
||||||
Changes in version 0.2.1.8-alpha - 2008-12-08
|
Changes in version 0.2.1.8-alpha - 2008-12-08
|
||||||
o Major features:
|
o Major features:
|
||||||
|
@ -2688,14 +2688,7 @@ handle_control_usefeature(control_connection_t *conn,
|
|||||||
verbose_names = 1;
|
verbose_names = 1;
|
||||||
else if (!strcasecmp(arg, "EXTENDED_EVENTS")) /* <- documented */
|
else if (!strcasecmp(arg, "EXTENDED_EVENTS")) /* <- documented */
|
||||||
extended_events = 1;
|
extended_events = 1;
|
||||||
else if (!strcasecmp(arg, "EXTENDED_FORMAT")) {
|
else {
|
||||||
/* remove this in 0.1.2.4; EXTENDED_FORMAT only ever worked for a
|
|
||||||
* little while during 0.1.2.2-alpha-dev. */
|
|
||||||
log_warn(LD_GENERAL,
|
|
||||||
"EXTENDED_FORMAT is deprecated; use EXTENDED_EVENTS "
|
|
||||||
"instead.");
|
|
||||||
extended_events = 1;
|
|
||||||
} else {
|
|
||||||
connection_printf_to_buf(conn, "552 Unrecognized feature \"%s\"\r\n",
|
connection_printf_to_buf(conn, "552 Unrecognized feature \"%s\"\r\n",
|
||||||
arg);
|
arg);
|
||||||
bad = 1;
|
bad = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user