summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-02-07 17:24:00 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-02-07 17:24:00 +0100
commitd065ebcf3b5979e6c2f823189b15c7416c77d3d6 (patch)
tree5abb9b02471ba7efb04f0fa4299d184b398d0760
parent8bc8e2190c0133bf1725ff8f65b1d6d8adc86941 (diff)
downloadgnutls-d065ebcf3b5979e6c2f823189b15c7416c77d3d6.tar.gz
Removed remaining TLS/IA stuff.
-rw-r--r--lib/gnutls_alert.c4
-rw-r--r--lib/includes/gnutls/gnutls.h.in4
2 files changed, 0 insertions, 8 deletions
diff --git a/lib/gnutls_alert.c b/lib/gnutls_alert.c
index 2f65d19ab0..3a3c4f5ac8 100644
--- a/lib/gnutls_alert.c
+++ b/lib/gnutls_alert.c
@@ -70,10 +70,6 @@ static const gnutls_alert_entry sup_alerts[] = {
N_("The server name sent was not recognized")},
{GNUTLS_A_UNKNOWN_PSK_IDENTITY,
N_("The SRP/PSK username is missing or not known")},
- {GNUTLS_A_INNER_APPLICATION_FAILURE,
- N_("Inner application negotiation failed")},
- {GNUTLS_A_INNER_APPLICATION_VERIFICATION,
- N_("Inner application verification failed")},
{0, NULL}
};
diff --git a/lib/includes/gnutls/gnutls.h.in b/lib/includes/gnutls/gnutls.h.in
index 1b0c34fbe2..aa203d11cc 100644
--- a/lib/includes/gnutls/gnutls.h.in
+++ b/lib/includes/gnutls/gnutls.h.in
@@ -340,8 +340,6 @@ extern "C"
* or not known.
* @GNUTLS_A_INNER_APPLICATION_FAILURE: Inner application
* negotiation failed.
- * @GNUTLS_A_INNER_APPLICATION_VERIFICATION: Inner application
- * verification failed.
*
* Enumeration of different TLS alerts.
*/
@@ -375,8 +373,6 @@ extern "C"
GNUTLS_A_CERTIFICATE_UNOBTAINABLE = 111,
GNUTLS_A_UNRECOGNIZED_NAME = 112,
GNUTLS_A_UNKNOWN_PSK_IDENTITY = 115,
- GNUTLS_A_INNER_APPLICATION_FAILURE = 208,
- GNUTLS_A_INNER_APPLICATION_VERIFICATION = 209
} gnutls_alert_description_t;
/**