소스 검색

ncd: move some stuff only used by modules and not the interpreter into extra/

ambrop7 13 년 전
부모
커밋
2cb7d22401
43개의 변경된 파일43개의 추가작업 그리고 43개의 파일을 삭제
  1. 1 1
      examples/ncdinterfacemonitor_test.c
  2. 1 1
      ncd-request/ncd-request.c
  3. 4 4
      ncd/CMakeLists.txt
  4. 0 0
      ncd/extra/BEventLock.c
  5. 0 0
      ncd/extra/BEventLock.h
  6. 1 1
      ncd/extra/NCDInterfaceMonitor.c
  7. 0 0
      ncd/extra/NCDInterfaceMonitor.h
  8. 0 0
      ncd/extra/NCDRequestClient.c
  9. 0 0
      ncd/extra/NCDRequestClient.h
  10. 1 1
      ncd/extra/NCDRfkillMonitor.c
  11. 0 0
      ncd/extra/NCDRfkillMonitor.h
  12. 1 1
      ncd/extra/address_utils.h
  13. 0 0
      ncd/extra/value_utils.h
  14. 1 1
      ncd/modules/arithmetic.c
  15. 1 1
      ncd/modules/call.c
  16. 1 1
      ncd/modules/call2.c
  17. 1 1
      ncd/modules/command_template.h
  18. 1 1
      ncd/modules/daemon.c
  19. 1 1
      ncd/modules/exit.c
  20. 1 1
      ncd/modules/explode.c
  21. 1 1
      ncd/modules/file_open.c
  22. 1 1
      ncd/modules/foreach.c
  23. 1 1
      ncd/modules/imperative.c
  24. 1 1
      ncd/modules/index.c
  25. 1 1
      ncd/modules/list.c
  26. 1 1
      ncd/modules/net_backend_rfkill.c
  27. 1 1
      ncd/modules/net_backend_waitlink.c
  28. 1 1
      ncd/modules/net_dns.c
  29. 1 1
      ncd/modules/net_iptables.c
  30. 1 1
      ncd/modules/net_ipv4_route.c
  31. 1 1
      ncd/modules/net_ipv6_route.c
  32. 1 1
      ncd/modules/net_ipv6_wait_dynamic_addr.c
  33. 1 1
      ncd/modules/parse.c
  34. 1 1
      ncd/modules/process_manager.c
  35. 1 1
      ncd/modules/run.c
  36. 1 1
      ncd/modules/runonce.c
  37. 1 1
      ncd/modules/sleep.c
  38. 2 2
      ncd/modules/socket.c
  39. 1 1
      ncd/modules/sys_evdev.c
  40. 3 3
      ncd/modules/sys_request_client.c
  41. 2 2
      ncd/modules/sys_request_server.c
  42. 1 1
      ncd/modules/timer.c
  43. 1 1
      ncd/modules/value.c

+ 1 - 1
examples/ncdinterfacemonitor_test.c

@@ -38,7 +38,7 @@
 #include <system/BTime.h>
 #include <system/BTime.h>
 #include <system/BReactor.h>
 #include <system/BReactor.h>
 #include <system/BSignal.h>
 #include <system/BSignal.h>
-#include <ncd/NCDInterfaceMonitor.h>
+#include <ncd/extra/NCDInterfaceMonitor.h>
 
 
 BReactor reactor;
 BReactor reactor;
 NCDInterfaceMonitor monitor;
 NCDInterfaceMonitor monitor;

+ 1 - 1
ncd-request/ncd-request.c

@@ -40,7 +40,7 @@
 #include <system/BAddr.h>
 #include <system/BAddr.h>
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDValGenerator.h>
 #include <ncd/NCDValGenerator.h>
-#include <ncd/NCDRequestClient.h>
+#include <ncd/extra/NCDRequestClient.h>
 
 
 #include <generated/blog_channel_ncd_request.h>
 #include <generated/blog_channel_ncd_request.h>
 
 

+ 4 - 4
ncd/CMakeLists.txt

@@ -6,7 +6,7 @@ set(NCD_ADDITIONAL_LIBS)
 if (NOT EMSCRIPTEN)
 if (NOT EMSCRIPTEN)
     if (BADVPN_USE_LINUX_RFKILL)
     if (BADVPN_USE_LINUX_RFKILL)
         list(APPEND NCD_ADDITIONAL_SOURCES
         list(APPEND NCD_ADDITIONAL_SOURCES
-            NCDRfkillMonitor.c
+            extra/NCDRfkillMonitor.c
             modules/net_backend_rfkill.c
             modules/net_backend_rfkill.c
         )
         )
     endif ()
     endif ()
@@ -24,12 +24,12 @@ if (NOT EMSCRIPTEN)
     endif ()
     endif ()
 
 
     add_library(ncdinterfacemonitor
     add_library(ncdinterfacemonitor
-        NCDInterfaceMonitor.c
+        extra/NCDInterfaceMonitor.c
     )
     )
     target_link_libraries(ncdinterfacemonitor base system)
     target_link_libraries(ncdinterfacemonitor base system)
     
     
     add_library(ncdrequest
     add_library(ncdrequest
-        NCDRequestClient.c
+        extra/NCDRequestClient.c
     )
     )
     target_link_libraries(ncdrequest base system ncdvalgenerator ncdvalparser)
     target_link_libraries(ncdrequest base system ncdvalgenerator ncdvalparser)
 
 
@@ -126,7 +126,7 @@ add_library(ncdinterpreter
     NCDInterpProg.c
     NCDInterpProg.c
     NCDPlaceholderDb.c
     NCDPlaceholderDb.c
     NCDMethodIndex.c
     NCDMethodIndex.c
-    BEventLock.c
+    extra/BEventLock.c
     modules/var.c
     modules/var.c
     modules/list.c
     modules/list.c
     modules/depend.c
     modules/depend.c

+ 0 - 0
ncd/BEventLock.c → ncd/extra/BEventLock.c


+ 0 - 0
ncd/BEventLock.h → ncd/extra/BEventLock.h


+ 1 - 1
ncd/NCDInterfaceMonitor.c → ncd/extra/NCDInterfaceMonitor.c

@@ -43,7 +43,7 @@
 #include <misc/nonblocking.h>
 #include <misc/nonblocking.h>
 #include <base/BLog.h>
 #include <base/BLog.h>
 
 
-#include <ncd/NCDInterfaceMonitor.h>
+#include <ncd/extra/NCDInterfaceMonitor.h>
 
 
 #include <generated/blog_channel_NCDInterfaceMonitor.h>
 #include <generated/blog_channel_NCDInterfaceMonitor.h>
 
 

+ 0 - 0
ncd/NCDInterfaceMonitor.h → ncd/extra/NCDInterfaceMonitor.h


+ 0 - 0
ncd/NCDRequestClient.c → ncd/extra/NCDRequestClient.c


+ 0 - 0
ncd/NCDRequestClient.h → ncd/extra/NCDRequestClient.h


+ 1 - 1
ncd/NCDRfkillMonitor.c → ncd/extra/NCDRfkillMonitor.c

@@ -36,7 +36,7 @@
 #include <misc/nonblocking.h>
 #include <misc/nonblocking.h>
 #include <base/BLog.h>
 #include <base/BLog.h>
 
 
-#include <ncd/NCDRfkillMonitor.h>
+#include "NCDRfkillMonitor.h"
 
 
 #include <generated/blog_channel_NCDRfkillMonitor.h>
 #include <generated/blog_channel_NCDRfkillMonitor.h>
 
 

+ 0 - 0
ncd/NCDRfkillMonitor.h → ncd/extra/NCDRfkillMonitor.h


+ 1 - 1
ncd/address_utils.h → ncd/extra/address_utils.h

@@ -40,7 +40,7 @@
 #include <system/BAddr.h>
 #include <system/BAddr.h>
 #include <system/BConnectionGeneric.h>
 #include <system/BConnectionGeneric.h>
 #include <ncd/NCDVal.h>
 #include <ncd/NCDVal.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 static int ncd_read_baddr (NCDValRef val, BAddr *out) WARN_UNUSED;
 static int ncd_read_baddr (NCDValRef val, BAddr *out) WARN_UNUSED;
 static NCDValRef ncd_make_baddr (BAddr addr, NCDValMem *mem);
 static NCDValRef ncd_make_baddr (BAddr addr, NCDValMem *mem);

+ 0 - 0
ncd/value_utils.h → ncd/extra/value_utils.h


+ 1 - 1
ncd/modules/arithmetic.c

@@ -72,7 +72,7 @@
 #include <misc/parse_number.h>
 #include <misc/parse_number.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_arithmetic.h>
 #include <generated/blog_channel_ncd_arithmetic.h>
 
 

+ 1 - 1
ncd/modules/call.c

@@ -69,7 +69,7 @@
 #include <misc/offset.h>
 #include <misc/offset.h>
 #include <structure/LinkedList0.h>
 #include <structure/LinkedList0.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_call.h>
 #include <generated/blog_channel_ncd_call.h>
 
 

+ 1 - 1
ncd/modules/call2.c

@@ -45,7 +45,7 @@
 #include <misc/offset.h>
 #include <misc/offset.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_call2.h>
 #include <generated/blog_channel_ncd_call2.h>
 
 

+ 1 - 1
ncd/modules/command_template.h

@@ -36,8 +36,8 @@
 #define BADVPN_NCD_MODULES_COMMAND_TEMPLATE_H
 #define BADVPN_NCD_MODULES_COMMAND_TEMPLATE_H
 
 
 #include <misc/cmdline.h>
 #include <misc/cmdline.h>
-#include <ncd/BEventLock.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
+#include <ncd/extra/BEventLock.h>
 
 
 typedef int (*command_template_build_cmdline) (NCDModuleInst *i, NCDValRef args, int remove, char **exec, CmdLine *cl);
 typedef int (*command_template_build_cmdline) (NCDModuleInst *i, NCDValRef args, int remove, char **exec, CmdLine *cl);
 typedef void (*command_template_free_func) (void *user, int is_error);
 typedef void (*command_template_free_func) (void *user, int is_error);

+ 1 - 1
ncd/modules/daemon.c

@@ -49,7 +49,7 @@
 #include <misc/strdup.h>
 #include <misc/strdup.h>
 #include <system/BProcess.h>
 #include <system/BProcess.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_daemon.h>
 #include <generated/blog_channel_ncd_daemon.h>
 
 

+ 1 - 1
ncd/modules/exit.c

@@ -40,7 +40,7 @@
 #include <limits.h>
 #include <limits.h>
 
 
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_exit.h>
 #include <generated/blog_channel_ncd_exit.h>
 
 

+ 1 - 1
ncd/modules/explode.c

@@ -53,7 +53,7 @@
 #include <misc/balloc.h>
 #include <misc/balloc.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_explode.h>
 #include <generated/blog_channel_ncd_explode.h>
 
 

+ 1 - 1
ncd/modules/file_open.c

@@ -103,7 +103,7 @@
 #include <misc/parse_number.h>
 #include <misc/parse_number.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_file_open.h>
 #include <generated/blog_channel_ncd_file_open.h>
 
 

+ 1 - 1
ncd/modules/foreach.c

@@ -75,7 +75,7 @@
 #include <system/BReactor.h>
 #include <system/BReactor.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_foreach.h>
 #include <generated/blog_channel_ncd_foreach.h>
 
 

+ 1 - 1
ncd/modules/imperative.c

@@ -55,7 +55,7 @@
 #include <misc/string_begins_with.h>
 #include <misc/string_begins_with.h>
 #include <misc/offset.h>
 #include <misc/offset.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_imperative.h>
 #include <generated/blog_channel_ncd_imperative.h>
 
 

+ 1 - 1
ncd/modules/index.c

@@ -48,7 +48,7 @@
 #include <stddef.h>
 #include <stddef.h>
 
 
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_index.h>
 #include <generated/blog_channel_ncd_index.h>
 
 

+ 1 - 1
ncd/modules/list.c

@@ -96,7 +96,7 @@
 #include <misc/parse_number.h>
 #include <misc/parse_number.h>
 #include <structure/IndexedList.h>
 #include <structure/IndexedList.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_list.h>
 #include <generated/blog_channel_ncd_list.h>
 
 

+ 1 - 1
ncd/modules/net_backend_rfkill.c

@@ -50,7 +50,7 @@
 
 
 #include <misc/string_begins_with.h>
 #include <misc/string_begins_with.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/NCDRfkillMonitor.h>
+#include <ncd/extra/NCDRfkillMonitor.h>
 
 
 #include <generated/blog_channel_ncd_net_backend_rfkill.h>
 #include <generated/blog_channel_ncd_net_backend_rfkill.h>
 
 

+ 1 - 1
ncd/modules/net_backend_waitlink.c

@@ -39,7 +39,7 @@
 #include <misc/get_iface_info.h>
 #include <misc/get_iface_info.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDIfConfig.h>
 #include <ncd/NCDIfConfig.h>
-#include <ncd/NCDInterfaceMonitor.h>
+#include <ncd/extra/NCDInterfaceMonitor.h>
 
 
 #include <generated/blog_channel_ncd_net_backend_waitlink.h>
 #include <generated/blog_channel_ncd_net_backend_waitlink.h>
 
 

+ 1 - 1
ncd/modules/net_dns.c

@@ -44,7 +44,7 @@
 #include <structure/LinkedList1.h>
 #include <structure/LinkedList1.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDIfConfig.h>
 #include <ncd/NCDIfConfig.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_net_dns.h>
 #include <generated/blog_channel_ncd_net_dns.h>
 
 

+ 1 - 1
ncd/modules/net_iptables.c

@@ -98,7 +98,7 @@
 
 
 #include <misc/debug.h>
 #include <misc/debug.h>
 #include <misc/find_program.h>
 #include <misc/find_program.h>
-#include <ncd/BEventLock.h>
+#include <ncd/extra/BEventLock.h>
 
 
 #include <ncd/modules/command_template.h>
 #include <ncd/modules/command_template.h>
 
 

+ 1 - 1
ncd/modules/net_ipv4_route.c

@@ -49,7 +49,7 @@
 #include <misc/debug.h>
 #include <misc/debug.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDIfConfig.h>
 #include <ncd/NCDIfConfig.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_net_ipv4_route.h>
 #include <generated/blog_channel_ncd_net_ipv4_route.h>
 
 

+ 1 - 1
ncd/modules/net_ipv6_route.c

@@ -51,7 +51,7 @@
 #include <misc/debug.h>
 #include <misc/debug.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDIfConfig.h>
 #include <ncd/NCDIfConfig.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_net_ipv6_route.h>
 #include <generated/blog_channel_ncd_net_ipv6_route.h>
 
 

+ 1 - 1
ncd/modules/net_ipv6_wait_dynamic_addr.c

@@ -50,7 +50,7 @@
 #include <misc/get_iface_info.h>
 #include <misc/get_iface_info.h>
 #include <misc/ipaddr6.h>
 #include <misc/ipaddr6.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/NCDInterfaceMonitor.h>
+#include <ncd/extra/NCDInterfaceMonitor.h>
 
 
 #include <generated/blog_channel_ncd_net_ipv6_wait_dynamic_addr.h>
 #include <generated/blog_channel_ncd_net_ipv6_wait_dynamic_addr.h>
 
 

+ 1 - 1
ncd/modules/parse.c

@@ -59,7 +59,7 @@
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_parse.h>
 #include <generated/blog_channel_ncd_parse.h>
 
 

+ 1 - 1
ncd/modules/process_manager.c

@@ -54,7 +54,7 @@
 #include <misc/strdup.h>
 #include <misc/strdup.h>
 #include <structure/LinkedList1.h>
 #include <structure/LinkedList1.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_process_manager.h>
 #include <generated/blog_channel_ncd_process_manager.h>
 
 

+ 1 - 1
ncd/modules/run.c

@@ -44,7 +44,7 @@
 #include <string.h>
 #include <string.h>
 
 
 #include <misc/strdup.h>
 #include <misc/strdup.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 #include <ncd/modules/command_template.h>
 #include <ncd/modules/command_template.h>
 
 
 #include <generated/blog_channel_ncd_run.h>
 #include <generated/blog_channel_ncd_run.h>

+ 1 - 1
ncd/modules/runonce.c

@@ -56,7 +56,7 @@
 #include <misc/strdup.h>
 #include <misc/strdup.h>
 #include <system/BProcess.h>
 #include <system/BProcess.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_runonce.h>
 #include <generated/blog_channel_ncd_runonce.h>
 
 

+ 1 - 1
ncd/modules/sleep.c

@@ -41,7 +41,7 @@
 #include <limits.h>
 #include <limits.h>
 
 
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_sleep.h>
 #include <generated/blog_channel_ncd_sleep.h>
 
 

+ 2 - 2
ncd/modules/socket.c

@@ -133,8 +133,8 @@
 #include <system/BConnection.h>
 #include <system/BConnection.h>
 #include <system/BConnectionGeneric.h>
 #include <system/BConnectionGeneric.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
-#include <ncd/address_utils.h>
+#include <ncd/extra/value_utils.h>
+#include <ncd/extra/address_utils.h>
 
 
 #include <generated/blog_channel_ncd_socket.h>
 #include <generated/blog_channel_ncd_socket.h>
 
 

+ 1 - 1
ncd/modules/sys_evdev.c

@@ -58,7 +58,7 @@
 
 
 #include <misc/nonblocking.h>
 #include <misc/nonblocking.h>
 #include <misc/debug.h>
 #include <misc/debug.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 
 

+ 3 - 3
ncd/modules/sys_request_client.c

@@ -88,9 +88,9 @@
 #include <structure/LinkedList0.h>
 #include <structure/LinkedList0.h>
 #include <structure/LinkedList1.h>
 #include <structure/LinkedList1.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/NCDRequestClient.h>
-#include <ncd/value_utils.h>
-#include <ncd/address_utils.h>
+#include <ncd/extra/NCDRequestClient.h>
+#include <ncd/extra/value_utils.h>
+#include <ncd/extra/address_utils.h>
 
 
 #include <generated/blog_channel_ncd_sys_request_client.h>
 #include <generated/blog_channel_ncd_sys_request_client.h>
 
 

+ 2 - 2
ncd/modules/sys_request_server.c

@@ -85,8 +85,8 @@
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDValParser.h>
 #include <ncd/NCDValGenerator.h>
 #include <ncd/NCDValGenerator.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
-#include <ncd/address_utils.h>
+#include <ncd/extra/value_utils.h>
+#include <ncd/extra/address_utils.h>
 
 
 #include <generated/blog_channel_ncd_sys_request_server.h>
 #include <generated/blog_channel_ncd_sys_request_server.h>
 
 

+ 1 - 1
ncd/modules/timer.c

@@ -41,7 +41,7 @@
 
 
 #include <misc/debug.h>
 #include <misc/debug.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_timer.h>
 #include <generated/blog_channel_ncd_timer.h>
 
 

+ 1 - 1
ncd/modules/value.c

@@ -162,7 +162,7 @@
 #include <ncd/NCDModule.h>
 #include <ncd/NCDModule.h>
 #include <ncd/NCDStringIndex.h>
 #include <ncd/NCDStringIndex.h>
 #include <ncd/static_strings.h>
 #include <ncd/static_strings.h>
-#include <ncd/value_utils.h>
+#include <ncd/extra/value_utils.h>
 
 
 #include <generated/blog_channel_ncd_value.h>
 #include <generated/blog_channel_ncd_value.h>