Clarified code comment

master
Ken 2024-01-04 21:08:42 +00:00
parent a80478e6a4
commit 3674b76b29
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ class GeneveTunnel(ControllerModule):
self.complete_cbt(cbt) self.complete_cbt(cbt)
def req_handler_create_tunnel(self, cbt: CBT): def req_handler_create_tunnel(self, cbt: CBT):
"""Role A. Issued from local Topology.""" """Role A - Initiator of request."""
olid = cbt.request.params["OverlayId"] olid = cbt.request.params["OverlayId"]
tnlid = cbt.request.params["TunnelId"] tnlid = cbt.request.params["TunnelId"]
loc_id = cbt.request.params["VNId"] loc_id = cbt.request.params["VNId"]
@ -225,7 +225,7 @@ class GeneveTunnel(ControllerModule):
def req_handler_exchnge_endpt(self, cbt: CBT): def req_handler_exchnge_endpt(self, cbt: CBT):
""" """
Role B Role B - Target (recipient) of request
""" """
try: try:
params = cbt.request.params params = cbt.request.params