4 * (c) 2007 Martin Mares <mj@ucw.cz>
10 #include "lib/clists.h"
11 #include "lib/ipaccess.h"
12 #include "lib/fastbuf.h"
14 #include <gnutls/gnutls.h>
15 #include <gnutls/x509.h>
19 struct ip_addrmask addrmask;
31 // Set up by the master process
34 byte *ip_string; // (xmalloced)
37 struct access_rule *rule; // Rule matched by this connection
38 int sk; // Client socket
39 byte *cert_name; // Client name from the certificate (NULL if no TLS) (xmalloced)
41 // Used by the child process
42 gnutls_session_t tls; // TLS session
43 struct fastbuf rx_fb, tx_fb; // Fastbufs for communication with the client (either plain-text or TLS)
47 struct odes *task_status;
52 extern uns max_request_size, max_attachment_size, trace_commands;
56 void NONRET client_error(char *msg, ...);
60 int process_init(struct conn *c);
61 int process_command(struct conn *c);
68 uns open_data; // Number of parts for open-data tasks
69 uns max_size; // Maximum size (0=use global default)
70 clist parts; // List of parts of this task (simp_nodes)
71 clist *extensions; // List of allowed extensions for this task (simp_nodes)
74 extern clist task_list;
75 extern struct cf_section tasks_conf;
77 struct task *task_find(byte *name);
78 int part_exists_p(struct task *t, byte *name);
79 int user_exists_p(byte *user);
80 int ext_exists_p(struct task *t, byte *ext);
82 void task_lock_status(struct conn *c);
83 void task_unlock_status(struct conn *c, uns write_back);
84 void task_load_status(struct conn *c);
86 struct odes *task_status_find_task(struct conn *c, struct task *t, uns create);
87 struct odes *task_status_find_part(struct odes *t, byte *part, uns create);
89 void task_submit_part(byte *user, byte *task, byte *part, byte *ext, uns version, struct fastbuf *fb);
90 void task_delete_part(byte *user, byte *task, byte *part, byte *ext, uns version);