]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/ddp_sip.c
xnu-1228.tar.gz
[apple/xnu.git] / bsd / netat / ddp_sip.c
index 27a9e695df50aaa83ebce4880d069bd74438c1eb..cc4b4749555a4b485eb1a5a5ac86bdca765fb506 100644 (file)
 
 #include <net/if.h>
 
+#include <netat/sysglue.h>  /* nbp.h needs the gbuf definiton */
 #include <netat/appletalk.h>
 #include <netat/ddp.h>
-#include <netat/sysglue.h>  /* nbp.h needs the gbuf definiton */
-#include <netat/nbp.h>
 #include <netat/at_pcb.h>
 #include <netat/at_var.h>
+#include <netat/nbp.h>
 #include <netat/atp.h>
 
 #define        SIP_SYSINFO_CMD         1
@@ -95,9 +95,9 @@ typedef       struct {
        u_short responder_version;
 } sip_userbytes_t;
 
-void sip_input(mp, ifID)
-     gbuf_t    *mp;
-     int       *ifID; /* not used */
+void sip_input(
+     gbuf_t    *mp,
+     __unused at_ifaddr_t      *ifID)
 {
        /* Packets arriving here are actually ATP packets, but since
         * A/UX only send dummy responses, we're implementing responder as
@@ -184,4 +184,3 @@ void sip_input(mp, ifID)
        (void)ddp_output(&mp, DDP_SOCKET_1st_DYNAMIC, FALSE);
        return;
 } /* sip_input */
-