kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 3741e8ca3ffd2d16cc5ae899781174ad645c37f7
parent 626206f0d86488e5d0569fae8551049e5006703b
Author: Joris Vink <joris@coders.se>
Date:   Wed,  1 Oct 2014 21:59:22 +0200

Merge pull request #20 from jturner/openbsd-fix

Add required header for proper OpenBSD checking
Diffstat:
src/domain.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/domain.c b/src/domain.c @@ -14,6 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/param.h> + #include "kore.h" #define SSL_SESSION_ID "kore_ssl_sessionid"