Skip to content

Instantly share code, notes, and snippets.

@fasterthanlime
Last active August 29, 2015 14:17
Show Gist options
  • Save fasterthanlime/bc22ee4ece6de32ee194 to your computer and use it in GitHub Desktop.
Save fasterthanlime/bc22ee4ece6de32ee194 to your computer and use it in GitHub Desktop.
enum MHD_FLAG
{
/** No options selected. */
MHD_NO_FLAG = 0,
/** Run in debug mode. */
MHD_USE_DEBUG = 1,
/** Run in HTTPS mode. */
MHD_USE_SSL = 2,
/** Run using one thread per connection. */
MHD_USE_THREAD_PER_CONNECTION = 4,
/** Run using an internal thread (or thread pool) doing `select()`. */
MHD_USE_SELECT_INTERNALLY = 8,
/** Run using the IPv6 protocol (...) */
MHD_USE_IPv6 = 16,
/** Be pedantic about the protocol (...) */
MHD_USE_PEDANTIC_CHECKS = 32,
/* (etc.) */
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment