Browse Source

GnuTLS: Implement tls_connection_enable_workaround()

Jouni Malinen 15 years ago
parent
commit
b763863d97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/crypto/tls_gnutls.c

+ 1 - 1
src/crypto/tls_gnutls.c

@@ -1271,7 +1271,7 @@ int tls_get_cipher(void *ssl_ctx, struct tls_connection *conn,
 int tls_connection_enable_workaround(void *ssl_ctx,
 				     struct tls_connection *conn)
 {
-	/* TODO: set SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS */
+	gnutls_record_disable_padding(conn->session);
 	return 0;
 }