Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, conn: "itf.IConnection", module_id: int, port_id: int) -> Non
self.__module_id = module_id
self.__port_id = port_id

self.__tpld_ids = PR_TPLDS(conn, module_id, module_id)
self.__tpld_ids = PR_TPLDS(conn, module_id, port_id)

self.total = PR_TOTAL(conn, module_id, port_id)
"""L23 port's total traffic statistics.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, conn: "itf.IConnection", module_id: int, port_id: int) -> Non
self.__module_id = module_id
self.__port_id = port_id

self.__tpld_ids = PR_TPLDS(conn, module_id, module_id)
self.__tpld_ids = PR_TPLDS(conn, module_id, port_id)

self.total = PR_TOTAL(conn, module_id, port_id)
"""L23 port's total traffic statistics.
Expand Down