port. They were lost in the changes for Proposal 148.
svn:r17911
document. Bugfix on 0.2.0.7-alpha.
- Do not accept incomplete ipv4 addresses (like 192.168.0) as valid.
Spec conformance issue. Bugfix on Tor 0.0.2pre27.
+ - Preserve reporting of stream end reasons to the local control port.
+ They were lost in the changes for Proposal 148.
o Deprecated and removed features:
- The old "tor --version --version" command, which would spit out the
char payload[RELAY_PAYLOAD_SIZE];
size_t payload_len=1;
circuit_t *circ;
+ uint8_t control_reason = reason;
if (conn->edge_has_sent_end) {
log_warn(LD_BUG,"(Harmless.) Calling connection_edge_end (reason %d) "
}
conn->edge_has_sent_end = 1;
- conn->end_reason = reason;
+ conn->end_reason = control_reason;
return 0;
}