Move httpd port into config.h
#define HASH_TAGS_PATH "hash_tags"
#define REF_TAGS_PATH "ref_tags"
#define BASEURL "http://blerg.dominionofawesome.com/"
+#define HTTP_BLERG_PORT 8080
#define RECORDS_PER_SEGMENT 65536
#define MAX_RECORD_SIZE 65535 /* No greater than 65535 */
init_responses();
- daemon = MHD_start_daemon(MHD_USE_DEBUG, 8080, NULL, NULL, &ahc_derp, NULL, MHD_OPTION_END);
+ daemon = MHD_start_daemon(MHD_USE_DEBUG, HTTP_BLERG_PORT, NULL, NULL, &ahc_derp, NULL, MHD_OPTION_END);
if (daemon == NULL) {
fprintf(stderr, "Could not start web server\n");
return 1;