src/server/daemon/ws-fn.c

changeset 84
afd57ce39ec9
parent 81
d25825f37967
child 96
0185b13bf41f
equal deleted inserted replaced
83:28433f06d5ee 84:afd57ce39ec9
39 #include "../webdav/webdav.h" 39 #include "../webdav/webdav.h"
40 40
41 #include "../admin/admin.h" 41 #include "../admin/admin.h"
42 42
43 struct FuncStruct webserver_funcs[] = { 43 struct FuncStruct webserver_funcs[] = {
44 { "init-test", init_test, NULL, 0 }, 44 { "init-test", init_test, NULL, NULL, 0 },
45 { "load-modules", load_modules, NULL, 0}, 45 { "load-modules", load_modules, NULL, NULL, 0},
46 { "test-nametrans", test_nametrans, NULL, 0 }, 46 { "test-nametrans", test_nametrans, NULL, NULL, 0 },
47 { "assign-name", assign_name, NULL, 0}, 47 { "assign-name", assign_name, NULL, NULL, 0},
48 { "type-by-extension", object_type_by_extension, NULL, 0}, 48 { "type-by-extension", object_type_by_extension, NULL, NULL, 0},
49 { "send-file", send_file, NULL, 0}, 49 { "send-file", send_file, NULL, NULL, 0},
50 { "common-index", service_index, NULL, 0}, 50 { "common-index", service_index, NULL, NULL, 0},
51 { "service-hello", service_hello, NULL, 0}, 51 { "service-hello", service_hello, NULL, NULL, 0},
52 { "send-options", send_options, NULL, 0}, 52 { "send-options", send_options, NULL, NULL, 0},
53 { "webdav-init", webdav_init, NULL, 0}, 53 { "webdav-init", webdav_init, NULL, NULL, 0},
54 { "webdav-setcollection", webdav_setcollection, NULL, 0}, 54 { "webdav-setcollection", webdav_setcollection, NULL, NULL, 0},
55 { "webdav-service", webdav_service, NULL, 0}, 55 { "webdav-service", webdav_service, NULL, NULL, 0},
56 { "admin-init", admin_init, NULL, 0}, 56 { "admin-init", admin_init, NULL, NULL, 0},
57 { "admin-service", admin_service, NULL, 0}, 57 { "admin-service", admin_service, NULL, NULL, 0},
58 { "auth-basic", auth_basic, NULL, 0 }, 58 { "auth-basic", auth_basic, NULL, NULL, 0 },
59 { "auth-db", auth_db, NULL, 0 }, 59 { "auth-db", auth_db, NULL, NULL, 0 },
60 { "require-auth", require_auth, NULL, 0}, 60 { "require-auth", require_auth, NULL, NULL, 0},
61 { "require-access", require_access, NULL, 0}, 61 { "require-access", require_access, NULL, NULL, 0},
62 { "append-acl", append_acl, NULL, 0}, 62 { "append-acl", append_acl, NULL, NULL, 0},
63 { "check-acl", check_acl, NULL, 0}, 63 { "check-acl", check_acl, NULL, NULL, 0},
64 { "print-message", print_message, NULL, 0}, 64 { "print-message", print_message, NULL, NULL, 0},
65 { "common-log", common_log, NULL, 0}, 65 { "common-log", common_log, NULL, NULL, 0},
66 {NULL, NULL, NULL, 0} 66 {NULL, NULL, NULL, NULL, 0}
67 }; 67 };

mercurial