add some imports
Some checks failed
Rust/cfdp/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Müller 2024-08-27 14:42:13 +02:00
parent d76d7c3caf
commit c1f512a7fe

View File

@ -1,3 +1,36 @@
import socket
import select
import logging
import time
from threading import Thread
from typing import Tuple, Optional
from multiprocessing import Queue
from queue import Empty
from cfdppy import PacketDestination, PutRequest, get_packet_destination, CfdpState
from cfdppy.mib import (
CheckTimerProvider,
DefaultFaultHandlerBase,
EntityType,
IndicationCfg,
RemoteEntityCfg,
)
from spacepackets.cfdp.pdu import AbstractFileDirectiveBase, PduFactory, PduHolder
from spacepackets.util import ByteFieldU16, UnsignedByteField
_LOGGER = logging.getLogger(__name__)
LOCAL_ENTITY_ID = ByteFieldU16(1)
REMOTE_ENTITY_ID = ByteFieldU16(2)
# Enable all indications for both local and remote entity.
INDICATION_CFG = IndicationCfg()
FILE_CONTENT = "Hello World!\n"
FILE_SEGMENT_SIZE = 256
MAX_PACKET_LEN = 512
def main():
pass