Skip to content
Snippets Groups Projects
Commit 626ff19f authored by Niels Möller's avatar Niels Möller
Browse files

Removed some debug output.

Rev: lib/modules/SSL.pmod/connection.pike:1.11
parent 24866f93
No related branches found
No related tags found
No related merge requests found
/* $Id: connection.pike,v 1.10 1999/03/03 16:44:51 nisse Exp $ /* $Id: connection.pike,v 1.11 1999/03/09 14:39:11 nisse Exp $
* *
* SSL packet layer * SSL packet layer
*/ */
...@@ -90,10 +90,11 @@ void send_packet(object packet, int|void priority) ...@@ -90,10 +90,11 @@ void send_packet(object packet, int|void priority)
PACKET_handshake : PRI_urgent, PACKET_handshake : PRI_urgent,
PACKET_application_data : PRI_application ])[packet->content_type]; PACKET_application_data : PRI_application ])[packet->content_type];
#ifdef SSL3_DEBUG #ifdef SSL3_DEBUG
#if 0
if (packet->content_type == 22) if (packet->content_type == 22)
werror(sprintf("SSL.connection->send_packet() called from:\n" werror(sprintf("SSL.connection->send_packet() called from:\n"
"%s\n", describe_backtrace(backtrace()))); "%s\n", describe_backtrace(backtrace())));
#endif
werror(sprintf("SSL.connection->send_packet: type %d, %d, '%O'\n", werror(sprintf("SSL.connection->send_packet: type %d, %d, '%O'\n",
packet->content_type, priority, packet->fragment[..5])); packet->content_type, priority, packet->fragment[..5]));
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment