fix cgi/lua header parsing
[project/uhttpd.git] / tls.h
1 /*
2  * uhttpd - Tiny single-threaded httpd - Main header
3  *
4  *   Copyright (C) 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
5  *   Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
6  *
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  */
19
20 #ifndef __UHTTPD_TLS_H
21 #define __UHTTPD_TLS_H
22
23 #ifdef HAVE_TLS
24
25 int uh_tls_init(const char *key, const char *crt);
26 void uh_tls_client_attach(struct client *cl);
27 void uh_tls_client_detach(struct client *cl);
28
29 #else
30
31 static inline int uh_tls_init(const char *key, const char *crt)
32 {
33         return -1;
34 }
35
36 static inline void uh_tls_client_attach(struct client *cl)
37 {
38 }
39
40 static inline void uh_tls_client_detach(struct client *cl)
41 {
42 }
43
44 #endif
45
46 #endif