iodine/src/user.h

68 lines
1.9 KiB
C
Raw Normal View History

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>,
* 2006-2009 Bjorn Andersson <flex@kryo.se>,
* 2015 Frekk van Blagh <frekk@frekkworks.com>
2007-02-11 11:21:18 +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__
#include "window.h"
#include "server.h"
2009-12-29 20:00:57 +00:00
#define USERS 16
2009-09-20 21:10:39 +00:00
struct tun_user {
2007-02-11 11:21:18 +00:00
char id;
int active;
int authenticated;
int authenticated_raw;
2007-02-11 11:21:18 +00:00
time_t last_pkt;
struct timeval dns_timeout;
2007-02-11 11:21:18 +00:00
int seed;
in_addr_t tun_ip;
struct sockaddr_storage host;
socklen_t hostlen;
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;
int downenc_bits;
int down_compression;
2009-01-05 18:50:46 +00:00
int fragsize;
enum connection conn;
2009-09-20 21:10:39 +00:00
int lazy;
struct qmem_buffer qmem;
2007-02-11 11:21:18 +00:00
};
extern struct tun_user *users;
extern int created_users;
int user_sending(int user);
int all_users_waiting_to_send();
int user_active(int i);
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
int init_users(in_addr_t, int);
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();
void user_switch_codec(int userid, struct encoder *enc);
void user_set_conn_type(int userid, enum connection c);
2007-02-11 11:21:18 +00:00
#endif