| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| #define ISOPROTO_TP ISOPROTO_TP4 |
| #define ISOPROTO_INACT_NL 33 |
| #define ISOPROTO_INTRAISIS 35 |
| #define ISO_MAX_ADDR_LENGTH 64 |
| #define ISO_HIERARCHICAL 0 |
| #define ISO_NON_HIERARCHICAL 1 |
| typedef struct sockaddr_tp { |
| u_char tp_addr[ISO_MAX_ADDR_LENGTH]; |
| } SOCKADDR_TP,*PSOCKADDR_TP,*LPSOCKADDR_TP; |
| #define ISO_SET_TP_ADDR(sa_tp,port,portlen,node,nodelen) (sa_tp)->tp_family = AF_ISO; (sa_tp)->tp_addr_type = ISO_HIERARCHICAL; (sa_tp)->tp_tsel_len = (portlen); (sa_tp)->tp_taddr_len = (portlen) + (nodelen); memcpy(&(sa_tp)->tp_addr,(port),(portlen)); memcpy(&(sa_tp)->tp_addr[portlen],(node),(nodelen)); |
| #define ISO_EXP_DATA_USE 00 |
| #define ISO_EXP_DATA_NUSE 01 |