Skip to content

Commit 3c298ed

Browse files
add exclusive attribute to CodecVertex
1 parent 8bd20f5 commit 3c298ed

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/videoipath_automation_tool/apps/topology/model/n_graph_elements/topology_codec_vertex.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class CodecVertex(Vertex):
6363
partnerConfig (Optional[dict[str, Union[str, int, bool]]]): The partner configuration.
6464
public (bool): Indicates whether the vertex is public (Federation).
6565
sdpSupport (bool): The vertex is publishing SDP.
66+
exclusive (bool): A connected source cannot have other receivers (even for multicast).
6667
serviceId (Optional[int]): The service ID.
6768
spareDstIp (Optional[Union[nAddress, nPoolId]]): The spare (multicast) destination IP address or pool ID.
6869
spareDstMac (Optional[MacAddress]): The spare destination MAC address.
@@ -91,6 +92,7 @@ class CodecVertex(Vertex):
9192
partnerConfig: Optional[dict[str, Union[str, int, bool]]]
9293
public: bool = False
9394
sdpSupport: bool = True
95+
exclusive: bool = False
9496
serviceId: Optional[int]
9597
spareDstIp: Optional[Union[nAddress, nPoolId]]
9698
spareDstMac: Optional[MacAddress]

0 commit comments

Comments
 (0)