Update of /cvsroot/netrek/server/Vanilla/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26988/include Modified Files: proto.h Log Message: compilation fixes for /ntserv under gcc 4.0.3 Index: proto.h =================================================================== RCS file: /cvsroot/netrek/server/Vanilla/include/proto.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- proto.h 6 May 2006 13:12:56 -0000 1.7 +++ proto.h 6 May 2006 14:02:37 -0000 1.8 @@ -30,6 +30,7 @@ /* db.c */ int findplayer(char *namePick, struct statentry *player); void savestats(void); +int newplayer(struct statentry *player); void changepassword(char *passPick); void savepass(const struct statentry *); @@ -80,6 +81,7 @@ void clearSPackets(int update_all, int update_sall); void sendFeature(struct feature_spacket *packet); int addSequence(char *outbuf, LONG *seq_no); +void addSequenceFlags(void *buf); void sendQueuePacket(short pos); void sendPickokPacket(int state); void sendClientLogin(struct stats *stats); @@ -177,6 +179,12 @@ int queues_purge(void); int queue_setname(int w_queue, char *name); +/* rsa_key.c */ +void makeRSAPacket(void *packet); +int decryptRSAPacket (void *spacket, + void *cpacket, + char *serverName); + /* redraw.c */ void intrupt(void);