Subversion Repositories Tewi

Rev

Rev 20 | Rev 43 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20 Rev 32
Line 1... Line 1...
1
/* $Id: tw_http.h 20 2024-09-14 09:59:15Z nishi $ */
1
/* $Id: tw_http.h 32 2024-09-16 12:42:19Z nishi $ */
2
 
2
 
3
#ifndef __TW_HTTP_H__
3
#ifndef __TW_HTTP_H__
4
#define __TW_HTTP_H__
4
#define __TW_HTTP_H__
5
 
5
 
6
#include <stdbool.h>
6
#include <stdbool.h>
Line 20... Line 20...
20
	bool _processed; /* Internal parameter */
20
	bool _processed; /* Internal parameter */
21
};
21
};
22
 
22
 
23
#ifdef SOURCE
23
#ifdef SOURCE
24
#include <openssl/ssl.h>
24
#include <openssl/ssl.h>
-
 
25
void tw_free_request(struct tw_http_request* req);
25
int tw_http_parse(SSL* ssl, int sock, struct tw_http_request* req);
26
int tw_http_parse(SSL* ssl, int sock, struct tw_http_request* req);
26
#endif
27
#endif
27
 
28
 
28
#endif
29
#endif