Changeset 431 for branches/CaptiveDNS/wifidog/src/gateway.c
- Timestamp:
- 02/06/05 13:14:58 (7 years ago)
- Files:
-
- 1 modified
-
branches/CaptiveDNS/wifidog/src/gateway.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/CaptiveDNS/wifidog/src/gateway.c
r422 r431 58 58 #include "ping_thread.h" 59 59 #include "httpd_thread.h" 60 #include "dnsserver_thread.h" 60 61 #include "util.h" 61 62 … … 214 215 /* start heartbeat thread */ 215 216 pthread_create(&tid, NULL, (void *)thread_ping, NULL); 217 pthread_detach(tid); 218 219 /* start dnsserver thread */ 220 pthread_create(&tid, NULL, (void *)thread_dnsserver, NULL); 216 221 pthread_detach(tid); 217 222
