Skip to content

Commit

Permalink
almost done
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Nov 7, 2023
1 parent 0b09664 commit fb305d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/cfdp-cli-udp/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ def _handle_msgs_to_user(
def _handle_reserved_cfdp_message(
self, transaction_id: TransactionId, reserved_cfdp_msg: ReservedCfdpMessage
):
self._handle_reserved_cfdp_message(reserved_cfdp_msg)
if reserved_cfdp_msg.is_cfdp_proxy_operation(reserved_cfdp_msg):
if reserved_cfdp_msg.is_cfdp_proxy_operation():
self._handle_cfdp_proxy_operation(transaction_id, reserved_cfdp_msg)
elif reserved_cfdp_msg.is_originating_transaction_id():
_LOGGER.info(
f"Received originating transaction ID {reserved_cfdp_msg.get_originating_transaction_id()}"
f"Received originating transaction ID: "
f"{reserved_cfdp_msg.get_originating_transaction_id()}"
)

def _handle_cfdp_proxy_operation(
Expand Down

0 comments on commit fb305d0

Please sign in to comment.