pike.git/
lib/
modules/
SSL.pmod/
https.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:25:56 by Martin Nilsson <nilsson@opera.com>
0ddaf833541979baac8b331dd9431989fc2e49d9 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
Remove the backtrace mechanism in Alert.
40:
SSL.alert alert_factory(SSL.connection con, int level, int description, SSL.Constants.ProtocolVersion version,
-
string|void message
, mixed|void trace
)
+
string|void message)
{ if (message) { werror("ALERT [%s: %d:%d]: %s", SSL.Constants.fmt_version(version), level, description, message); }
-
return ::alert_factory(con, level, description, version, message
, trace
);
+
return ::alert_factory(con, level, description, version, message);
} }