kore/src
Joris Vink 34c2f31a93 Add validators to kore, specified in the configuration using 'validator' keyword.
Example:
	validator	v_id	function	v_id_function
	validator	v_url	regex		^/url/path/[a-z]*$

You can then call these using kore_validator_run(char *, char *), example:

	if (!kore_validator_run("v_url", req->path))
		[req->path is bad];
2013-11-09 16:21:52 +01:00
..
accesslog.c add IPv6 support and support for multiple listeners. 2013-07-27 20:56:15 +02:00
bsd.c Detect right amount of cpu's available under osx. From Vaibhav Bhembre via github. 2013-07-28 19:21:49 +02:00
buf.c Use kore_mem_find() in kore_buf_replace_string(), fixes certain crashes 2013-09-26 16:49:44 +02:00
config.c Add validators to kore, specified in the configuration using 'validator' keyword. 2013-11-09 16:21:52 +01:00
connection.c Improve on sending data to the client. 2013-10-26 00:48:09 +02:00
domain.c Add support for ECDH and provide a better ssl_cipher set by default. 2013-09-24 08:58:05 +02:00
http.c Improve on sending data to the client. 2013-10-26 00:48:09 +02:00
kore.c Add validators to kore, specified in the configuration using 'validator' keyword. 2013-11-09 16:21:52 +01:00
linux.c add IPv6 support and support for multiple listeners. 2013-07-27 20:56:15 +02:00
mem.c remove meminuse and list of allocated memory blocks, we don't need it. 2013-07-25 23:41:00 +02:00
module.c Add validators to kore, specified in the configuration using 'validator' keyword. 2013-11-09 16:21:52 +01:00
net.c Kill unused vars 2013-10-26 00:59:03 +02:00
pool.c Add fixed size memory pools and use them throughout Kore. 2013-07-15 11:06:36 +02:00
spdy.c Chain our sending netbufs together. Gives us a lot less SSL_write() calls. 2013-10-25 14:22:29 +02:00
utils.c Properly calculate GMT time in kore_date_to_time() 2013-10-15 15:06:19 +02:00
validator.c Add validators to kore, specified in the configuration using 'validator' keyword. 2013-11-09 16:21:52 +01:00
worker.c If there's only a single worker, do not block after accept treshold has been 2013-11-01 22:37:59 +01:00
zlib_dict.c properly deflate/inflate of name/value blocks. and add ability 2013-05-01 00:35:33 +02:00