enip-ts
Version:
Typescript implementation of the Ethernet/IP™ protocol.
17 lines (16 loc) • 566 B
TypeScript
import { EPathData, EPathDataElementTypes, EPathDataTypes } from './data';
import { EPathLogical, EPathLogicalTypes } from './logical';
import { EPathPort } from './port';
/**
* Epath segment Types
*/
export declare enum SegmentTypes {
PORT = 0,// Communication Port to Leave Node (Shall be 1 for a Backplane), Link Address of Next Device
LOGICAL = 32,
NETWORK = 64,
SYMBOLIC = 96,
DATA = 128,
DATATYPE_1 = 160,
DATATYPE_2 = 384
}
export { EPathData, EPathDataElementTypes, EPathDataTypes, EPathLogical, EPathLogicalTypes, EPathPort };