summaryrefslogtreecommitdiffstats
path: root/xup/xup.h
diff options
context:
space:
mode:
Diffstat (limited to 'xup/xup.h')
-rw-r--r--xup/xup.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/xup/xup.h b/xup/xup.h
index b82e6d1d..96584c5f 100644
--- a/xup/xup.h
+++ b/xup/xup.h
@@ -38,7 +38,11 @@ struct mod
int (*mod_signal)(struct mod* v);
int (*mod_end)(struct mod* v);
int (*mod_set_param)(struct mod* v, char* name, char* value);
- long mod_dumby[100 - 6]; /* align, 100 minus the number of mod
+ int (*mod_session_change)(struct mod* v, int, int);
+ int (*mod_get_wait_objs)(struct mod* v, tbus* read_objs, int* rcount,
+ tbus* write_objs, int* wcount, int* timeout);
+ int (*mod_check_wait_objs)(struct mod* v);
+ long mod_dumby[100 - 9]; /* align, 100 minus the number of mod
functions above */
/* server functions */
int (*server_begin_update)(struct mod* v);
@@ -95,4 +99,5 @@ struct mod
char password[256];
char ip[256];
char port[256];
+ tbus sck_obj;
};