ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/client.h
(Generate patch)

Comparing deliantra/server/include/client.h (file contents):
Revision 1.103 by root, Tue Jan 3 11:23:41 2012 UTC vs.
Revision 1.105 by root, Tue Jan 3 13:44:11 2012 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * 5 *
6 * Deliantra is free software: you can redistribute it and/or modify it under 6 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the 7 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your 8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version. 9 * option) any later version.
342 ACC (RW, tcpi.tcpi_snd_cwnd); 342 ACC (RW, tcpi.tcpi_snd_cwnd);
343 ACC (RW, tcpi.tcpi_advmss); 343 ACC (RW, tcpi.tcpi_advmss);
344 ACC (RW, tcpi.tcpi_reordering); 344 ACC (RW, tcpi.tcpi_reordering);
345#endif 345#endif
346 346
347//+GPL
348
349#define CLIENT_SUPPORT_READABLES(__sockPtr,__type)\
350 ( ((__type)>0) &&\
351 ((__sockPtr)->has_readable_type) && \
352 ((__sockPtr)->supported_readables & (1<<(__type))) )
353
354#define FACE_TYPES 1
355#define PNG_FACE_INDEX 0
356
357//-GPL
358
359typedef object_vector<client, &client::active> sockvec; 347typedef object_vector<client, &client::active> sockvec;
360 348
361extern sockvec clients; 349extern sockvec clients;
362 350
363#define for_all_clients(var) \ 351#define for_all_clients(var) \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines