1*8405Swnj /* decnet.h 1.3 82/10/09 */ 26823Ssam 36823Ssam /* 46823Ssam * DECnet address (should be expanded for Phase 3E) 56823Ssam */ 66823Ssam struct dn_addr { 76823Ssam u_short s_host; /* remote host address */ 86823Ssam }; 96823Ssam 106823Ssam /* 116823Ssam * Socket address, DECnet style. 126823Ssam */ 136823Ssam struct sockaddr_dn { 146823Ssam short sdn_family; /* AF_DECNET */ 156823Ssam u_short sdn_port; /* local port number */ 166823Ssam struct dn_addr sdn_addr; /* remote host/port address */ 176823Ssam char sdn_zero[]; 186823Ssam }; 19