1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#include "config.h"
#include <stdio.h>
#include <stdarg.h>
#include "urweb.h"
extern uw_app uw_application;
static void log_debug(void *data, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
}
int main(int argc, char *argv[]) {
uw_context ctx;
failure_kind fk;
if (argc != 2) {
fprintf(stderr, "Pass exactly one argument: the URI to run\n");
return 1;
}
ctx = uw_init(0, NULL, log_debug);
uw_set_app(ctx, &uw_application);
while (1) {
fk = uw_begin(ctx, argv[1]);
if (fk == SUCCESS) {
uw_print(ctx, 1);
puts("");
return 0;
} else if (fk != UNLIMITED_RETRY) {
fprintf(stderr, "Error: %s\n", uw_error_message(ctx));
return 1;
}
uw_reset(ctx);
}
}
void *uw_init_client_data() {
return NULL;
}
void uw_free_client_data(void *data) {
}
void uw_copy_client_data(void *dst, void *src) {
}
void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) {
}
void uw_post_expunge(uw_context ctx, void *data) {
}
int uw_supports_direct_status = 0;
|