2007-02-11 11:21:18 +00:00
|
|
|
/*
|
2014-06-01 06:46:42 +00:00
|
|
|
* Copyright (c) 2006-2014 Erik Ekman <yarrick@kryo.se>,
|
2015-08-21 08:57:54 +00:00
|
|
|
* 2006-2009 Bjorn Andersson <flex@kryo.se>,
|
|
|
|
* 2015 Frekk van Blagh <frekk@frekkworks.com>
|
2007-02-11 11:21:18 +00:00
|
|
|
*
|
2014-08-07 19:14:10 +00:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
2007-02-11 11:21:18 +00:00
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __USER_H__
|
|
|
|
#define __USER_H__
|
|
|
|
|
2015-08-21 08:57:54 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "server.h"
|
2009-12-29 20:00:57 +00:00
|
|
|
|
2015-08-21 08:57:54 +00:00
|
|
|
#define USERS 16
|
2009-09-20 21:10:39 +00:00
|
|
|
|
2012-02-04 23:49:30 +00:00
|
|
|
struct tun_user {
|
2007-02-11 11:21:18 +00:00
|
|
|
char id;
|
|
|
|
int active;
|
2014-06-16 19:12:49 +00:00
|
|
|
int authenticated;
|
|
|
|
int authenticated_raw;
|
2007-02-11 11:21:18 +00:00
|
|
|
time_t last_pkt;
|
2015-09-28 05:01:18 +00:00
|
|
|
struct timeval dns_timeout;
|
2007-02-11 11:21:18 +00:00
|
|
|
int seed;
|
|
|
|
in_addr_t tun_ip;
|
2015-06-27 09:57:39 +00:00
|
|
|
struct sockaddr_storage host;
|
|
|
|
socklen_t hostlen;
|
2015-08-21 08:57:54 +00:00
|
|
|
struct frag_buffer *incoming;
|
|
|
|
struct frag_buffer *outgoing;
|
|
|
|
int next_upstream_ack;
|
2007-06-09 16:18:59 +00:00
|
|
|
struct encoder *encoder;
|
2009-09-20 15:11:08 +00:00
|
|
|
char downenc;
|
2015-08-29 12:07:44 +00:00
|
|
|
int downenc_bits;
|
2015-09-28 05:01:18 +00:00
|
|
|
int down_compression;
|
2009-01-05 18:50:46 +00:00
|
|
|
int fragsize;
|
2009-08-06 19:48:55 +00:00
|
|
|
enum connection conn;
|
2009-09-20 21:10:39 +00:00
|
|
|
int lazy;
|
2015-10-17 14:25:31 +00:00
|
|
|
struct qmem_buffer qmem;
|
2007-02-11 11:21:18 +00:00
|
|
|
};
|
|
|
|
|
2012-02-04 23:49:30 +00:00
|
|
|
extern struct tun_user *users;
|
2015-08-21 08:57:54 +00:00
|
|
|
extern int created_users;
|
|
|
|
|
|
|
|
int user_sending(int user);
|
|
|
|
int all_users_waiting_to_send();
|
|
|
|
int user_active(int i);
|
2016-01-09 14:36:34 +00:00
|
|
|
int check_authenticated_user_and_ip(int userid, struct query *q, int check_ip);
|
|
|
|
int check_user_and_ip(int userid, struct query *q, int check_ip);
|
2007-02-11 11:21:18 +00:00
|
|
|
|
2009-01-04 12:03:35 +00:00
|
|
|
int init_users(in_addr_t, int);
|
2010-02-08 16:50:45 +00:00
|
|
|
const char* users_get_first_ip();
|
2007-02-11 11:21:18 +00:00
|
|
|
int find_user_by_ip(uint32_t);
|
|
|
|
int find_available_user();
|
2008-09-14 11:34:56 +00:00
|
|
|
void user_switch_codec(int userid, struct encoder *enc);
|
2009-08-06 19:48:55 +00:00
|
|
|
void user_set_conn_type(int userid, enum connection c);
|
2007-02-11 11:21:18 +00:00
|
|
|
|
|
|
|
#endif
|