aboutsummaryrefslogtreecommitdiff
path: root/conn_data.c
diff options
context:
space:
mode:
Diffstat (limited to 'conn_data.c')
-rw-r--r--conn_data.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/conn_data.c b/conn_data.c
index 1b13cec..1b237b4 100644
--- a/conn_data.c
+++ b/conn_data.c
@@ -6,6 +6,8 @@ void conn_data_init(struct conn_data *data,int fd){
data->bufsz=512;
data->buflen=0;
data->buffer=malloc(data->bufsz,char);
+
+ data->userid=-1;
}
void conn_data_nullify(struct conn_data *data){
@@ -13,4 +15,6 @@ void conn_data_nullify(struct conn_data *data){
data->buffer=NULL;
data->bufsz=0;
data->buflen=0;
+
+ data->userid=-1;
}