From 042b1c2cff3500f0543b33e5ea4d749d6495de3b Mon Sep 17 00:00:00 2001 From: taymindis Date: Tue, 15 Jan 2019 21:15:46 +0800 Subject: [PATCH] daemon feature example --- examples/profile_service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/profile_service.c b/examples/profile_service.c index 177edca..3727ce3 100644 --- a/examples/profile_service.c +++ b/examples/profile_service.c @@ -42,7 +42,7 @@ int ffunc_main(int argc, char *argv[], ffunc_config_t *ffunc_conf) { ffunc_conf->sock_port = 2005; ffunc_conf->backlog = 160; ffunc_conf->max_thread = 64; - // ffunc_conf->daemon = 1; + // ffunc_conf->daemon = 1; uncomment if you want to run as daemon ffunc_parse_function(ffunc_conf, "getProfile", "postError", "postProfile"); return 0; }