summaryrefslogtreecommitdiff
path: root/src/libtipidee/tipidee_method_conv_table.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-10-10 08:06:46 +0000
committerLaurent Bercot <ska@appnovation.com>2023-10-10 08:06:46 +0000
commit541325d00c7078d063ea97333d3c9c64d6b6c7b6 (patch)
tree86453b9f547359546d74988b04ab33ec10b4000c /src/libtipidee/tipidee_method_conv_table.c
parentd9f5cb7a28ee79e299e41d3ce325171f01e1a3d7 (diff)
downloadtipidee-541325d00c7078d063ea97333d3c9c64d6b6c7b6.tar.xz
Add new logging functions, change method_conv for bsearch
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libtipidee/tipidee_method_conv_table.c')
-rw-r--r--src/libtipidee/tipidee_method_conv_table.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/libtipidee/tipidee_method_conv_table.c b/src/libtipidee/tipidee_method_conv_table.c
deleted file mode 100644
index 892e5b5..0000000
--- a/src/libtipidee/tipidee_method_conv_table.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* ISC license. */
-
-#include <tipidee/method.h>
-
-static tipidee_method_conv const table[] =
-{
- { .num = TIPIDEE_METHOD_GET, .str = "GET" },
- { .num = TIPIDEE_METHOD_HEAD, .str = "HEAD" },
- { .num = TIPIDEE_METHOD_OPTIONS, .str = "OPTIONS" },
- { .num = TIPIDEE_METHOD_POST, .str = "POST" },
- { .num = TIPIDEE_METHOD_PUT, .str = "PUT" },
- { .num = TIPIDEE_METHOD_DELETE, .str = "DELETE" },
- { .num = TIPIDEE_METHOD_TRACE, .str = "TRACE" },
- { .num = TIPIDEE_METHOD_CONNECT, .str = "CONNECT" },
- { .num = TIPIDEE_METHOD_PRI, .str = "PRI" },
- { .num = TIPIDEE_METHOD_UNKNOWN, .str = 0 }
-} ;
-
-tipidee_method_conv const *tipidee_method_conv_table = table ;