1*6823Ssam 2*6823Ssam /* 3*6823Ssam * DECnet address (should be expanded for Phase 3E) 4*6823Ssam */ 5*6823Ssam struct dn_addr { 6*6823Ssam u_short s_host; /* remote host address */ 7*6823Ssam }; 8*6823Ssam 9*6823Ssam /* 10*6823Ssam * Socket address, DECnet style. 11*6823Ssam */ 12*6823Ssam struct sockaddr_dn { 13*6823Ssam short sdn_family; /* AF_DECNET */ 14*6823Ssam u_short sdn_port; /* local port number */ 15*6823Ssam struct dn_addr sdn_addr; /* remote host/port address */ 16*6823Ssam char sdn_zero[]; 17*6823Ssam }; 18