~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to common/packets.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223220902-kiyrmr9i4152cka5
Tags: 2.2.0-1
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#include "connection.h"         /* struct connection, MAX_LEN_* */
20
20
#include "diptreaty.h"
 
21
#include "effects.h"
21
22
#include "events.h"
22
 
#include "improvement.h"
 
23
#include "improvement.h"        /* bv_imprs */
23
24
#include "map.h"
24
25
#include "player.h"
25
26
#include "requirements.h"
91
92
void pre_send_packet_player_attribute_chunk(struct connection *pc,
92
93
                                            struct packet_player_attribute_chunk
93
94
                                            *packet);
94
 
void post_receive_packet_game_state(struct connection *pc,
95
 
                                    struct packet_game_state *packet);
96
 
void post_send_packet_game_state(struct connection *pc,
97
 
                                 const struct packet_game_state *packet);
 
95
 
 
96
void post_receive_packet_ruleset_control(struct connection *pc,
 
97
                                         struct packet_ruleset_control *packet);
 
98
void post_send_packet_ruleset_control(struct connection *pc,
 
99
                                      const struct packet_ruleset_control *packet);
98
100
 
99
101
#define SEND_PACKET_START(type) \
100
102
  unsigned char buffer[MAX_LEN_PACKET]; \