For the complete documentation index, see llms.txt. This page is also available as Markdown.

priority_vector Structure

This structure defines settings for the priority_Vector structure for gPTP.

typedef struct __declspec (align(1))
{
   system_identity sysid;
   uint16_t steps_removed;
   port_identity portid;
   uint16_t port_number;
}priority_vector; 
<StructLayout(LayoutKind.Sequential, Pack:=1)> Public Structure priority_vector
   Dim sysid As system_identity
   Dim steps_removed As UInt16
   Dim portid As port_identity
   Dim port_number As UInt16
End Structure 
[StructLayout(LayoutKind.Sequential,Pack=1)]
public struct priority_vector
{
   public system_identity sysid;
   public UInt16 steps_removed;
   public port_identity portid;
   public UInt16 port_number;
}

Remarks

Item
Description

sysid

See system_identity structure

steps_removed

Indicates the number of Network paths from the root the source is

portid

See port_identity structure

port_number

portNumber represents the PTP ports on the network.

Last updated