(svn r8000) -Codechange: drop UDP packets when their internal size does not match the received size. If that is the case, the packet was not received in one piece (or got somehow mangled with another packet), which will cause us to drop the packet later on because we are (for example) trying to read beyond the end of the packet.
/* $Id$ */
#ifndef NAMEGEN_H
#define NAMEGEN_H
typedef byte TownNameGenerator(char *buf, uint32 seed, const char *last);
extern TownNameGenerator * const _town_name_generators[];
#endif /* NAMEGEN_H */