#2149 - docstring changes following PR suggestions.

This commit is contained in:
Chris McCarthy
2024-04-02 12:56:15 +01:00
parent 1ac3e1c6b4
commit bb937c1092
2 changed files with 3 additions and 4 deletions

View File

@@ -1023,11 +1023,11 @@ class RouterSessionManager(SessionManager):
"""
Manages network sessions, including session creation, lookup, and communication with other components.
The RouterSessionManager is a Router/Firewall specific implementation of SessionManager. It enables to resolve
outbound interface transmission details functions to leverage the route table instead of the default gateway.
The RouterSessionManager is a Router/Firewall specific implementation of SessionManager. It overrides the
resolve_outbound_network_interface and resolve_outbound_transmission_details functions, allowing them to leverage
the route table instead of the default gateway.
:param sys_log: A reference to the system log component.
:param arp_cache: A reference to the ARP cache component.
"""
def resolve_outbound_network_interface(self, dst_ip_address: IPv4Address) -> Optional[RouterInterface]:

View File

@@ -72,7 +72,6 @@ class SessionManager:
Manages network sessions, including session creation, lookup, and communication with other components.
:param sys_log: A reference to the system log component.
:param arp_cache: A reference to the ARP cache component.
"""
def __init__(self, sys_log: SysLog):