Ulfius
HTTP Framework for REST Applications in C
|
#include "ulfius.h"
Go to the source code of this file.
Macros | |
#define | UNUSED(x) (void)(x) |
Functions | |
struct _u_endpoint ** | ulfius_endpoint_match (const char *method, const char *url, struct _u_endpoint *endpoint_list) |
int | ulfius_parse_url (const char *url, const struct _u_endpoint *endpoint, struct _u_map *map, int check_utf8) |
int | ulfius_set_response_header (struct MHD_Response *response, const struct _u_map *response_map_header) |
int | ulfius_set_response_cookie (struct MHD_Response *mhd_response, const struct _u_response *response) |
const unsigned char * | utf8_check (const char *s_orig, size_t len) |
#define UNUSED | ( | x | ) | (void)(x) |
Ulfius Framework
REST framework library
u_private.h: private structures and functions declarations
Copyright 2015-2017 Nicolas Mora mail@ babe loues t.or g
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1 of the License.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GENERAL PUBLIC LICENSE for more details.
You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses/. Macro to avoid compiler warning when some parameters are unused and that's ok
struct _u_endpoint** ulfius_endpoint_match | ( | const char * | method, |
const char * | url, | ||
struct _u_endpoint * | endpoint_list | ||
) |
For using Ulfius in embedded systems Thanks to Dirk Uhlemann ulfius_endpoint_match return the endpoint array matching the url called with the proper http method the returned array always has its last value to NULL return NULL on memory error
ulfius_endpoint_match return the endpoint array matching the url called with the proper http method the returned array always has its last value to NULL return NULL on memory error returned value must be free'd after use
int ulfius_parse_url | ( | const char * | url, |
const struct _u_endpoint * | endpoint, | ||
struct _u_map * | map, | ||
int | check_utf8 | ||
) |
ulfius_parse_url fills map with the keys/values defined in the url that are described in the endpoint format url return U_OK on success
int ulfius_set_response_header | ( | struct MHD_Response * | response, |
const struct _u_map * | response_map_header | ||
) |
ulfius_set_response_header adds headers defined in the response_map_header to the response return the number of added headers, -1 on error
int ulfius_set_response_cookie | ( | struct MHD_Response * | mhd_response, |
const struct _u_response * | response | ||
) |
ulfius_set_response_cookie adds cookies defined in the response_map_cookie return the number of added headers, -1 on error
const unsigned char* utf8_check | ( | const char * | s_orig, |
size_t | len | ||
) |
The utf8_check() function scans the string starting at s. It returns a pointer to the first byte of the first malformed or overlong UTF-8 sequence found, or NULL if the string contains only correct UTF-8. It also spots UTF-8 sequences that could cause trouble if converted to UTF-16, namely surrogate characters (U+D800..U+DFFF) and non-Unicode positions (U+FFFE..U+FFFF). This routine is very likely to find a malformed sequence if the input uses any other encoding than UTF-8. It therefore can be used as a very effective heuristic for distinguishing between UTF-8 and other encodings.
I wrote this code mainly as a specification of functionality; there are no doubt performance optimizations possible for certain CPUs.
Markus Kuhn http://www.cl.cam.ac.uk/~mgk25/ – 2005-03-30 Nicolas Mora mail@ License: babe loues t.or ghttp://www.cl.cam.ac.uk/~mgk25/short-license.html