/**********************************************************************
*                        BINDF                                        *
**********************************************************************/
 struct bindf {
             char hdr[3];    /* x'810685'-BINDF hdr           */
             char sense[2];  /* sense bytes from rsp(BIND)    */
             unsigned why:8; /* code of unsuccess             */
             char key;       /* x'07'-netaddr. pair
                                x'06'-names pair              */
             union {
                  struct {
                         short plu;  /* PLU netaddress        */
                         short slu;  /* SLU netaddress        */
                         } netad;
                  struct {
                         char typep;    /* x'F3'-LU           */
                         char plulen;   /* PLU name length    */
                         char plunm[8]; /* PLU name           */
                         char types;    /* x'F3'-LU           */
                         char slulen;   /* SLU name length    */
                         char slunm[8]; /* SLU name           */
                         } names;
                   } adnm;
	      };
