src/server/ws-fn.c

changeset 13
1fdbf4170ef4
parent 12
34aa8001ea53
equal deleted inserted replaced
12:34aa8001ea53 13:1fdbf4170ef4
29 #include "nsapi.h" 29 #include "nsapi.h"
30 30
31 #include "nametrans.h" 31 #include "nametrans.h"
32 #include "objecttype.h" 32 #include "objecttype.h"
33 #include "service.h" 33 #include "service.h"
34 #include "webdav.h"
34 35
35 struct FuncStruct webserver_funcs[] = { 36 struct FuncStruct webserver_funcs[] = {
36 { "test-nametrans", test_nametrans, NULL, 0 }, 37 { "test-nametrans", test_nametrans, NULL, 0 },
37 { "assign-name", assign_name, NULL, 0}, 38 { "assign-name", assign_name, NULL, 0},
38 { "type-by-extension", object_type_by_extension, NULL, 0}, 39 { "type-by-extension", object_type_by_extension, NULL, 0},
39 { "send-file", send_file, NULL, 0}, 40 { "send-file", send_file, NULL, 0},
40 { "common-index", service_index, NULL, 0}, 41 { "common-index", service_index, NULL, 0},
41 { "service-hello", service_hello, NULL, 0}, 42 { "service-hello", service_hello, NULL, 0},
43 { "webdav-service", webdav_service, NULL, 0},
42 {NULL, NULL, NULL, 0} 44 {NULL, NULL, NULL, 0}
43 }; 45 };

mercurial