c7a6c90beb4fc014377dc55623e20744d8c855ce
2 * uhttpd - Tiny single-threaded httpd - Utility header
4 * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
19 #ifndef _UHTTPD_UTILS_
27 #define min(x, y) (((x) < (y)) ? (x) : (y))
28 #define max(x, y) (((x) > (y)) ? (x) : (y))
30 #define array_size(x) \
31 (sizeof(x) / sizeof(x[0]))
33 #define foreach_header(i, h) \
34 for( i = 0; (i + 1) < (sizeof(h) / sizeof(h[0])) && h[i]; i += 2 )
46 const char * sa_straddr(void *sa
);
47 const char * sa_strport(void *sa
);
48 int sa_port(void *sa
);
50 char *strfind(char *haystack
, int hslen
, const char *needle
, int ndlen
);
52 int uh_tcp_send(struct client
*cl
, const char *buf
, int len
);
53 int uh_tcp_peek(struct client
*cl
, char *buf
, int len
);
54 int uh_tcp_recv(struct client
*cl
, char *buf
, int len
);
57 struct client
*cl
, int code
, const char *summary
,
61 #define uh_http_response(cl, code, message) \
62 uh_http_sendhf(cl, code, message, message)
64 int uh_http_sendc(struct client
*cl
, const char *data
, int len
);
67 struct client
*cl
, struct http_request
*req
,
72 struct client
*cl
, struct http_request
*req
,
73 const char *buf
, int len
77 int uh_urldecode(char *buf
, int blen
, const char *src
, int slen
);
78 int uh_urlencode(char *buf
, int blen
, const char *src
, int slen
);
79 int uh_b64decode(char *buf
, int blen
, const unsigned char *src
, int slen
);
82 struct auth_realm
* uh_auth_add(char *path
, char *user
, char *pass
);
85 struct client
*cl
, struct http_request
*req
, struct path_info
*pi
89 struct path_info
* uh_path_lookup(struct client
*cl
, const char *url
);
91 struct listener
* uh_listener_add(int sock
, struct config
*conf
);
92 struct listener
* uh_listener_lookup(int sock
);
94 struct client
* uh_client_add(int sock
, struct listener
*serv
);
95 struct client
* uh_client_lookup(int sock
);
96 void uh_client_remove(int sock
);
This page took 0.052162 seconds and 3 git commands to generate.