Changeset ff9efb1 in ammosreader
- Timestamp:
- 05/28/23 11:15:14 (2 years ago)
- Branches:
- AmmosSource
- Children:
- 82f4e7d
- Parents:
- 0fcd6da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ammosreader/AmmosSocketSource.py
r0fcd6da rff9efb1 17 17 logger.info("Remaining Bytes: %s", bytes_to_read - len(b''.join(byte_array))) 18 18 self.__source.settimeout(5) 19 new_bytes = self. __source.recv(bytes_to_read - len(b''.join(byte_array)), socket.MSG_WAITALL)19 new_bytes = self.source.recv(bytes_to_read - len(b''.join(byte_array)), socket.MSG_WAITALL) 20 20 21 21 if not new_bytes:
Note:
See TracChangeset
for help on using the changeset viewer.