src/server/ws-fn.c

changeset 10
e3ae779232a9
parent 3
137197831306
child 12
34aa8001ea53
equal deleted inserted replaced
9:30e51941a673 10:e3ae779232a9
27 */ 27 */
28 28
29 #include "nsapi.h" 29 #include "nsapi.h"
30 30
31 #include "nametrans.h" 31 #include "nametrans.h"
32 #include "objecttype.h"
32 #include "service.h" 33 #include "service.h"
33 34
34 struct FuncStruct webserver_funcs[] = { 35 struct FuncStruct webserver_funcs[] = {
35 { "test-nametrans", test_nametrans, NULL, 0 }, 36 { "test-nametrans", test_nametrans, NULL, 0 },
36 { "test-service", test_service, NULL, 0}, 37 { "assign-name", assign_name, NULL, 0},
38 { "type-by-extension", object_type_by_extension, NULL, 0},
39 { "send-file", send_file, NULL, 0},
40 { "service-hello", service_hello, NULL, 0},
37 {NULL, NULL, NULL, 0} 41 {NULL, NULL, NULL, 0}
38 }; 42 };

mercurial