Changeset 43 in Main for trunk/Server/main.c
- Timestamp:
- Sep 18, 2024, 6:19:03 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/main.c
r36 r43 2 2 3 3 #define SOURCE 4 5 #include "../config.h" 4 6 5 7 #include <stdio.h> … … 8 10 #include <signal.h> 9 11 12 #ifndef NO_SSL 10 13 #include <openssl/opensslv.h> 14 #endif 11 15 12 16 #include <cm_log.h> … … 29 33 if(!cm_do_log) { 30 34 cm_do_log = true; 35 #ifndef NO_SSL 31 36 cm_log("", "This is Tewi HTTPd, version %s, using %s", tw_get_version(), OPENSSL_VERSION_TEXT); 37 #else 38 cm_log("", "This is Tewi HTTPd, version %s", tw_get_version()); 39 #endif 32 40 } else { 33 41 cm_do_log = true;
Note:
See TracChangeset
for help on using the changeset viewer.