config.h | config.h | |||
---|---|---|---|---|
skipping to change at line 92 | skipping to change at line 92 | |||
#define CPPCMS_HAVE_CANONICALIZE_FILE_NAME | #define CPPCMS_HAVE_CANONICALIZE_FILE_NAME | |||
/* "Have g++ typeof" */ | /* "Have g++ typeof" */ | |||
#define CPPCMS_HAVE_UNDERSCORE_TYPEOF | #define CPPCMS_HAVE_UNDERSCORE_TYPEOF | |||
/* Define to the full name of this package. */ | /* Define to the full name of this package. */ | |||
#define CPPCMS_PACKAGE_NAME "CppCMS" | #define CPPCMS_PACKAGE_NAME "CppCMS" | |||
/* Define to the full name and version of this package. */ | /* Define to the full name and version of this package. */ | |||
#define CPPCMS_PACKAGE_STRING "CppCMS/1.0.3" | #define CPPCMS_PACKAGE_STRING "CppCMS/1.0.4" | |||
/* Define to the version of this package. */ | /* Define to the version of this package. */ | |||
#define CPPCMS_PACKAGE_VERSION "1.0.3" | #define CPPCMS_PACKAGE_VERSION "1.0.4" | |||
/* Define to module suffix. */ | /* Define to module suffix. */ | |||
#define CPPCMS_LIBRARY_SUFFIX ".so" | #define CPPCMS_LIBRARY_SUFFIX ".so" | |||
/* Define to module suffix. */ | /* Define to module suffix. */ | |||
#define CPPCMS_LIBRARY_PREFIX "lib" | #define CPPCMS_LIBRARY_PREFIX "lib" | |||
#define CPPCMS_HAS_FCGI | #define CPPCMS_HAS_FCGI | |||
#define CPPCMS_HAS_SCGI | #define CPPCMS_HAS_SCGI | |||
#define CPPCMS_HAS_HTTP | #define CPPCMS_HAS_HTTP | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
http_cookie.h | http_cookie.h | |||
---|---|---|---|---|
skipping to change at line 82 | skipping to change at line 82 | |||
/// | /// | |||
/// Set cookie's domain | /// Set cookie's domain | |||
/// | /// | |||
void domain(std::string); | void domain(std::string); | |||
/// | /// | |||
/// Set cookie's comment | /// Set cookie's comment | |||
/// | /// | |||
void comment(std::string); | void comment(std::string); | |||
/// | /// | |||
/// Set expiration date/time | ||||
/// | ||||
void expires(time_t when); | ||||
/// | ||||
/// Set max cookie's age | /// Set max cookie's age | |||
/// | /// | |||
void max_age(unsigned a); | void max_age(unsigned a); | |||
/// | /// | |||
/// Set age according to browser's session (i.e. no Max-Age) | /// Set age according to browser's session (i.e. no Max-Age) | |||
/// | /// | |||
void browser_age(); | void browser_age(); | |||
/// | /// | |||
/// Set secure property on the cookies | /// Set secure property on the cookies | |||
skipping to change at line 140 | skipping to change at line 144 | |||
std::string name_; | std::string name_; | |||
std::string value_; | std::string value_; | |||
std::string path_; | std::string path_; | |||
std::string domain_; | std::string domain_; | |||
std::string comment_; | std::string comment_; | |||
unsigned max_age_; | unsigned max_age_; | |||
uint32_t secure_ : 1; | uint32_t secure_ : 1; | |||
uint32_t has_age_ : 1; | uint32_t has_age_ : 1; | |||
uint32_t reserved_ : 30; | uint32_t has_expiration_: 1; | |||
uint32_t reserved_ : 29; | ||||
}; | }; | |||
} } //::cppcms::http | } } //::cppcms::http | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 6 lines changed or added | |||