From 9c8b17c297ac8ca5bb2db09c6e012488828e41ff Mon Sep 17 00:00:00 2001 From: stefanocasazza Date: Thu, 5 Apr 2018 19:00:12 +0200 Subject: [PATCH] fix --- README.md | 2 +- examples/WiAuth/v2/wi_auth2.cpp | 1 + examples/WiAuth/v2/wi_auth2.usp | 1 + examples/WiAuth/v2/wi_auth_declaration2.h | 228 ++++++++++++---------- include/ulib/base/base.h | 2 +- include/ulib/net/ipaddress.h | 10 + include/ulib/net/server/server.h | 2 + src/ulib/base/base.c | 8 +- src/ulib/base/base_error.c | 12 +- src/ulib/internal/common.cpp | 6 +- src/ulib/internal/memory_pool.cpp | 9 - src/ulib/log.cpp | 8 +- src/ulib/net/ipaddress.cpp | 43 ++-- src/ulib/net/server/plugin/mod_nodog.cpp | 16 +- src/ulib/utility/interrupt.cpp | 4 - tests/base/test_misc.c | 3 - 16 files changed, 203 insertions(+), 152 deletions(-) diff --git a/README.md b/README.md index 10537a55..ca992d60 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ userver application server is since 10th round in the [TechEmpower's web framewo ## Contributing -1. Fork it ( https://github.com/stefanocasazza/ULib/fork ) +1. Fork it ( http://github.com//ULib/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) diff --git a/examples/WiAuth/v2/wi_auth2.cpp b/examples/WiAuth/v2/wi_auth2.cpp index fbd3b51b..3414cdff 100644 --- a/examples/WiAuth/v2/wi_auth2.cpp +++ b/examples/WiAuth/v2/wi_auth2.cpp @@ -23,6 +23,7 @@ extern U_EXPORT void runDynamicPage_wi_auth2(int param); U_http_info.endHeader = 0; static UHTTP::service_info GET_table[] = { // NB: the table must be ordered alphabetically for binary search... + GET_ENTRY(clean), GET_ENTRY(get_config), GET_ENTRY(start_ap), GET_ENTRY(welcome) diff --git a/examples/WiAuth/v2/wi_auth2.usp b/examples/WiAuth/v2/wi_auth2.usp index dc9f23e1..5e80f5b4 100644 --- a/examples/WiAuth/v2/wi_auth2.usp +++ b/examples/WiAuth/v2/wi_auth2.usp @@ -6,6 +6,7 @@ static void usp_init_wi_auth2(); -->