daemon: use __attribute__((constructor)) for protolayer_globals
The `protolayer_globals` array can basically be treated as a constant by most of the program and its initialization only uses compile-time-known values. We basically only initialize parts of the array in different files throughout the codebase to maintain separation of concerns, so that each piece of Knot Resolver initializes the part that pertains to it. Therefore, I believe that it is more ergonomic to just use `__attribute__((constructor))` for these functions, so as not to pollute `daemon/main.c` with these calls.
parent
baacbea7
No related branches found
No related tags found
Showing
- daemon/http.c 2 additions, 3 deletionsdaemon/http.c
- daemon/http.h 0 additions, 6 deletionsdaemon/http.h
- daemon/io.c 2 additions, 2 deletionsdaemon/io.c
- daemon/io.h 0 additions, 3 deletionsdaemon/io.h
- daemon/main.c 0 additions, 11 deletionsdaemon/main.c
- daemon/proxyv2.c 2 additions, 2 deletionsdaemon/proxyv2.c
- daemon/proxyv2.h 0 additions, 3 deletionsdaemon/proxyv2.h
- daemon/tls.c 2 additions, 1 deletiondaemon/tls.c
- daemon/tls.h 0 additions, 3 deletionsdaemon/tls.h
- daemon/worker.c 9 additions, 6 deletionsdaemon/worker.c
Loading
Please register or sign in to comment