These are the current versions (actually already 2 years old).
[unix-history] / usr / src / sys / netns / spp_debug.c
index 1e36b9d..78091fa 100644 (file)
@@ -1,9 +1,20 @@
 /*
 /*
- * Copyright (c) 1982 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * Copyright (c) 1984, 1985, 1986, 1987 Regents of the University of California.
+ * All rights reserved.
  *
  *
- *     @(#)spp_debug.c 6.2 (Berkeley) %G%
+ * Redistribution and use in source and binary forms are permitted
+ * provided that the above copyright notice and this paragraph are
+ * duplicated in all such forms and that any documentation,
+ * advertising materials, and other materials related to such
+ * distribution and use acknowledge that the software was developed
+ * by the University of California, Berkeley.  The name of the
+ * University may not be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ *     @(#)spp_debug.c 7.5 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -17,7 +28,6 @@
 #include "../net/route.h"
 #include "../net/if.h"
 #include "../netinet/tcp_fsm.h"
 #include "../net/route.h"
 #include "../net/if.h"
 #include "../netinet/tcp_fsm.h"
-#include "../netinet/tcp_timer.h"
 
 #include "ns.h"
 #include "ns_pcb.h"
 
 #include "ns.h"
 #include "ns_pcb.h"
 #include "idp_var.h"
 #include "sp.h"
 #include "spidp.h"
 #include "idp_var.h"
 #include "sp.h"
 #include "spidp.h"
+#define SPPTIMERS
+#include "spp_timer.h"
 #include "spp_var.h"
 #define        SANAMES
 #include "spp_debug.h"
 
 int    sppconsdebug = 0;
 #include "spp_var.h"
 #define        SANAMES
 #include "spp_debug.h"
 
 int    sppconsdebug = 0;
-extern char *prurequests[];
-extern char *tanames[];
-extern char *tcpstates[];
-extern char *tcptimers[];
 /*
  * spp debug routines
  */
 /*
  * spp debug routines
  */
@@ -44,10 +52,15 @@ spp_trace(act, ostate, sp, si, req)
        struct spidp *si;
        int req;
 {
        struct spidp *si;
        int req;
 {
+#ifdef INET
        u_short seq, ack, len, alo;
        unsigned long iptime();
        int flags;
        struct spp_debug *sd = &spp_debug[spp_debx++];
        u_short seq, ack, len, alo;
        unsigned long iptime();
        int flags;
        struct spp_debug *sd = &spp_debug[spp_debx++];
+       extern char *prurequests[];
+       extern char *sanames[];
+       extern char *tcpstates[];
+       extern char *spptimers[];
 
        if (spp_debx == SPP_NDEBUG)
                spp_debx = 0;
 
        if (spp_debx == SPP_NDEBUG)
                spp_debx = 0;
@@ -72,7 +85,7 @@ spp_trace(act, ostate, sp, si, req)
                printf("%x %s:", sp, tcpstates[ostate]);
        else
                printf("???????? ");
                printf("%x %s:", sp, tcpstates[ostate]);
        else
                printf("???????? ");
-       printf("%s ", tanames[act]);
+       printf("%s ", sanames[act]);
        switch (act) {
 
        case SA_RESPOND:
        switch (act) {
 
        case SA_RESPOND:
@@ -101,6 +114,8 @@ spp_trace(act, ostate, sp, si, req)
 #ifndef lint
 #define pf(f) { if (flags&SP_/**/f) { printf("%s%s", cp, "f"); cp = ","; } }
                        pf(SP); pf(SA); pf(OB); pf(EM);
 #ifndef lint
 #define pf(f) { if (flags&SP_/**/f) { printf("%s%s", cp, "f"); cp = ","; } }
                        pf(SP); pf(SA); pf(OB); pf(EM);
+#else
+                       cp = cp;
 #endif
                        printf(">");
                }
 #endif
                        printf(">");
                }
@@ -120,7 +135,7 @@ spp_trace(act, ostate, sp, si, req)
        case SA_USER:
                printf("%s", prurequests[req&0xff]);
                if ((req & 0xff) == PRU_SLOWTIMO)
        case SA_USER:
                printf("%s", prurequests[req&0xff]);
                if ((req & 0xff) == PRU_SLOWTIMO)
-                       printf("<%s>", tcptimers[req>>8]);
+                       printf("<%s>", spptimers[req>>8]);
                break;
        }
        if (sp)
                break;
        }
        if (sp)
@@ -131,6 +146,7 @@ spp_trace(act, ostate, sp, si, req)
                return;
 #ifndef lint
 #define p3(f)  { printf("%s = %x, ", "f", sp->s_/**/f); }
                return;
 #ifndef lint
 #define p3(f)  { printf("%s = %x, ", "f", sp->s_/**/f); }
-       printf("\t"); p3(rack);p3(ralo);p3(snt);p3(flags); printf("\n");
+       printf("\t"); p3(rack);p3(ralo);p3(smax);p3(flags); printf("\n");
+#endif
 #endif
 }
 #endif
 }