summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2004-08-05 08:51:33 +0000
committerSimon Josefsson <simon@josefsson.org>2004-08-05 08:51:33 +0000
commitd28529618ac980667140f15cdf406876516a046b (patch)
treef7124a6af14f231a59f3ec131d48f2174f561838 /src
parenta847b6025085ce5bdc16653a79e152bf26fab9c6 (diff)
downloadgnutls-d28529618ac980667140f15cdf406876516a046b.tar.gz
Remove retcodes.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/retcodes.c108
2 files changed, 1 insertions, 111 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 6009dc838b..5794eeb2b5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -18,9 +18,7 @@ gnutls_cli_debug_SOURCES = tls_test-gaa.c tls_test.c tests.c common.c
gnutls_cli_debug_LDADD = ../lib/libgnutls.la ../libextra/libgnutls-extra.la $(LIBGCRYPT_LIBS) $(LIBTASN1_LIBS) $(LIBOPENCDK_LIBS) $(SERV_LIBS)
-noinst_PROGRAMS = retcodes errcodes
-retcodes_SOURCES = retcodes.c
-retcodes_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS) $(LIBTASN1_LIBS)
+noinst_PROGRAMS = errcodes
errcodes_SOURCES = errcodes.c
errcodes_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS) $(LIBTASN1_LIBS)
diff --git a/src/retcodes.c b/src/retcodes.c
deleted file mode 100644
index 2bd27039cb..0000000000
--- a/src/retcodes.c
+++ /dev/null
@@ -1,108 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <gnutls/gnutls.h>
-
-const char *_gnutls_strerror(int);
-
-static const char headers[] = "\\tablefirsthead{%\n"
- "\\hline\n"
- "\\multicolumn{1}{|c}{Error code} &\n"
- "\\multicolumn{1}{c|}{Description} \\\\\n"
- "\\hline}\n"
- "\\tablehead{%\n"
- "\\hline\n"
- "\\multicolumn{2}{|l|}{\\small\\sl continued from previous page}\\\\\n"
- "\\hline\n"
- "\\multicolumn{1}{|c}{Error code} &\n"
- "\\multicolumn{1}{c|}{Description} \\\\\n"
- "\\hline}\n"
- "\\tabletail{%\n"
- "\\hline\n"
- "\\multicolumn{2}{|r|}{\\small\\sl continued on next page}\\\\\n"
- "\\hline}\n"
- "\\tablelasttail{\\hline}\n"
- "\\bottomcaption{The error codes table}\n\n";
-
-typedef struct {
- char name[128];
- int error_index;
-} error_name;
-
-
-static int compar(const void *_n1, const void *_n2)
-{
- const error_name *n1 = (const error_name *) _n1,
- *n2 = (const error_name *) _n2;
- return strcmp(n1->name, n2->name);
-}
-
-static char *escape_string(const char *str)
-{
- static char buffer[500];
- unsigned int i = 0, j = 0;
-
-
- while (str[i] != 0 && j < sizeof(buffer) - 1) {
- if (str[i] == '_') {
- buffer[j++] = '\\';
- buffer[j++] = '_';
- } else {
- buffer[j++] = str[i];
- }
- i++;
- };
-
- buffer[j] = 0;
-
- return buffer;
-
-}
-
-int main()
-{
- int i, j;
- const char *desc;
- const char *_name;
- error_name names_to_sort[400]; /* up to 400 names */
-
- printf
- ("\\chapter{Error codes and descriptions\\index{Error codes}}\\label{ap:error_codes}\n");
-
- printf("\\begin{center}\n");
-
- puts(headers);
-
- printf("\\begin{supertabular}{|l|p{6cm}|}\n");
-
- memset(names_to_sort, 0, sizeof(names_to_sort));
- j = 0;
- for (i = 0; i > -400; i--) {
- _name = _gnutls_strerror(i);
- if (_name == NULL)
- continue;
-
- strcpy(names_to_sort[j].name, _name);
- names_to_sort[j].error_index = i;
- j++;
- }
-
- qsort(names_to_sort, j, sizeof(error_name), compar);
-
- for (i = 0; i < j; i++) {
- _name = names_to_sort[i].name;
- desc = gnutls_strerror(names_to_sort[i].error_index);
- if (desc == NULL || _name == NULL)
- continue;
-
- printf("{\\tiny{%s}} & %s", escape_string(_name), desc);
- printf("\\\\\n");
- }
-
- printf("\\end{supertabular}\n\n");
-
- printf("\\end{center}\n");
-
- return 0;
-
-}