Commit a6e74e77 authored by Sergey Lyubka's avatar Sergey Lyubka

3.5 -> 3.6

parent 2b76f5fc
// Copyright (c) 2004-2012 Sergey Lyubka // Copyright (c) 2004-2013 Sergey Lyubka
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal
...@@ -30,8 +30,10 @@ ...@@ -30,8 +30,10 @@
#endif #endif
#if defined (_MSC_VER) #if defined (_MSC_VER)
#pragma warning (disable : 4127) // conditional expression is constant: introduced by FD_SET(..) // conditional expression is constant: introduced by FD_SET(..)
#pragma warning (disable : 4204) // non-constant aggregate initializer: issued due to missing C99 support #pragma warning (disable : 4127)
// non-constant aggregate initializer: issued due to missing C99 support
#pragma warning (disable : 4204)
#endif #endif
// Disable WIN32_LEAN_AND_MEAN. // Disable WIN32_LEAN_AND_MEAN.
...@@ -149,9 +151,7 @@ typedef DWORD pthread_t; ...@@ -149,9 +151,7 @@ typedef DWORD pthread_t;
static int pthread_mutex_lock(pthread_mutex_t *); static int pthread_mutex_lock(pthread_mutex_t *);
static int pthread_mutex_unlock(pthread_mutex_t *); static int pthread_mutex_unlock(pthread_mutex_t *);
static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len); static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len);
struct file; struct file;
static char *mg_fgets(char *buf, size_t size, struct file *filep, char **p); static char *mg_fgets(char *buf, size_t size, struct file *filep, char **p);
...@@ -231,7 +231,7 @@ typedef int SOCKET; ...@@ -231,7 +231,7 @@ typedef int SOCKET;
#include <lauxlib.h> #include <lauxlib.h>
#endif #endif
#define MONGOOSE_VERSION "3.5" #define MONGOOSE_VERSION "3.6"
#define PASSWORDS_FILE_NAME ".htpasswd" #define PASSWORDS_FILE_NAME ".htpasswd"
#define CGI_ENVIRONMENT_SIZE 4096 #define CGI_ENVIRONMENT_SIZE 4096
#define MAX_CGI_ENVIR_VARS 64 #define MAX_CGI_ENVIR_VARS 64
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment