]> git.pond.sub.org Git - empserver/blobdiff - src/lib/player/nat.c
Update copyright notice
[empserver] / src / lib / player / nat.c
index 9ec9301865f64e423497968d734727c78a780de7..fb03026961cf48964f2445ad67a4c95ca7c85ac2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  nat.c: Get nation stuff
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1994
  */
 
-#include "prototypes.h"
-#include "misc.h"
-#include "nat.h"
+#include <config.h>
+
 #include "file.h"
-#include "player.h"
-#include <fcntl.h>
+#include "nat.h"
+#include "prototypes.h"
 
 int
-natbyname(s_char *name, natid *result)
+natbyname(char *name, natid *result)
 {
     struct natstr *np;
     int i;
 
     for (i = 0; NULL != (np = getnatp(i)); i++) {
-       if (strcmp(np->nat_cnam, name) == 0) {
+       if (np->nat_stat != STAT_UNUSED && !strcmp(np->nat_cnam, name)) {
            *result = i;
            return 0;
        }
     }
-    *result = 255;
+    *result = NATID_BAD;
     return -1;
 }
 
 int
-natpass(int cn, s_char *pass)
+natpass(int cn, char *pass)
 {
     struct natstr *np;
 
     np = getnatp((natid)cn);
-    if (np->nat_stat == VIS)
+    if (np->nat_stat == STAT_VIS)
        return 1;
     if (strcmp(np->nat_pnam, pass) == 0)
        return 1;