| 1 |
/*
|
| 2 |
* Copyright (C) 2000,2001 Onlyer (onlyer@263.net)
|
| 3 |
*
|
| 4 |
* This program is free software; you can redistribute it and/or
|
| 5 |
* modify it under the terms of the GNU General Public License
|
| 6 |
* as published by the Free Software Foundation; either version 2
|
| 7 |
* of the License, or (at your option) any later version.
|
| 8 |
*
|
| 9 |
* This program is distributed in the hope that it will be useful,
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 12 |
* GNU General Public License for more details.
|
| 13 |
*
|
| 14 |
* You should have received a copy of the GNU General Public License
|
| 15 |
* along with this program; if not, write to the Free Software
|
| 16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
| 17 |
*/
|
| 18 |
#ifndef INCLUDED_SERVERQUEUE_H
|
| 19 |
#define INCLUDED_SERVERQUEUE_H
|
| 20 |
|
| 21 |
#include "common/list.h"
|
| 22 |
#include "common/packet.h"
|
| 23 |
|
| 24 |
|
| 25 |
typedef struct serverqueue
|
| 26 |
{
|
| 27 |
unsigned int seqno;
|
| 28 |
unsigned int ctime;
|
| 29 |
unsigned int clientid;
|
| 30 |
t_packet * packet;
|
| 31 |
unsigned int gameid;
|
| 32 |
unsigned int gametoken;
|
| 33 |
} t_sq;
|
| 34 |
|
| 35 |
extern t_list * sqlist(void);
|
| 36 |
extern int sqlist_create(void);
|
| 37 |
extern int sqlist_destroy(void);
|
| 38 |
|
| 39 |
extern int sq_destroy(t_sq * sq,t_elem ** curr);
|
| 40 |
extern int sqlist_check_timeout(void);
|
| 41 |
extern t_sq * sqlist_find_sq(unsigned int seqno);
|
| 42 |
extern t_sq * sq_create(unsigned int clientid, t_packet * packet,unsigned int gameid);
|
| 43 |
|
| 44 |
extern unsigned int sq_get_clientid(t_sq const * sq);
|
| 45 |
extern unsigned int sq_get_gameid(t_sq const * sq);
|
| 46 |
extern unsigned int sq_get_seqno(t_sq const * sq);
|
| 47 |
extern int sq_set_gametoken(t_sq * sq, unsigned int gametoken);
|
| 48 |
extern unsigned int sq_get_gametoken(t_sq const * sq);
|
| 49 |
extern t_packet * sq_get_packet(t_sq const * sq);
|
| 50 |
|
| 51 |
#endif
|