Skip to content

Commit 23e9e75

Browse files
committed
✨ update lib60870-C to 2.3.3, update mbedtls to 3.6.2. improve transport security configuration options
1 parent 1813e6d commit 23e9e75

15 files changed

+1656
-64
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "depends/lib60870"]
22
path = depends/lib60870
3-
url = https://github.com/mz-automation/lib60870.git
3+
url = https://github.com/m-unkel/lib60870.git
44
update = rebase
55
ignore = all
66
[submodule "depends/pybind11"]

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@
77
### Features
88
- Serve type hints for all classes and methods as .pyi file
99
- Add property `Server.protocol_parameters` and `Connection.protocol_parameters` to be able to read and update protocol parameters like window size and timeouts
10+
- Serve type hints for all classes and methods as a `.pyi` file.
11+
- Add the property **Server.protocol_parameters** and **Connection.protocol_parameters** to enable reading and updating protocol parameters, such as window size and timeouts.
12+
- Introduce the **Client.on_station_initialized** callback to handle end-of-initialization messages.
13+
- Add the **Station.signal_initialized(cause=...)** method to support sending end-of-initialization messages per station to all connected clients.
14+
- Send monitoring data formatted as sequences in periodic transmissions and interrogation responses, if possible.
15+
- Provide Batch Transmission support via the new **Batch** class, in combination with **Server.transmit_batch(...)**, for monitoring direction.
16+
- Add **TransportSecurity.set_ciphers()** to specify a list of supported cipher suites.
17+
- Add **TransportSecurity.set_renegotiation_time()** to configure the TLS renegotiation time.
18+
- Add **TransportSecurity.set_resumption_interval()** to define the session resumption interval.
19+
- Raise a `ValueError` when modifying a **TransportSecurity** object that is already assigned to a client or server, as changes have no effect.
20+
21+
### Dependencies
22+
- Minor update of lib60870 to 2.3.3
23+
- Major update of Mbed TLS to 3.6.2, add support for TLS 1.3
24+
25+
### Deprecations
26+
- Property **number_of_object** renamed to **number_of_objects** in class **IncomingMessage**
27+
28+
### Breaking Changes
29+
- Dropped TLS 1.1 support
1030

1131
## v2.0
1232
### Fixes

CMakeLists.txt

+5-35
Original file line numberDiff line numberDiff line change
@@ -53,38 +53,8 @@ if(NOT ATOMIC_INT64_IS_BUILTIN)
5353
endif()
5454

5555
# ##############################################################################
56-
# lib60870-C 2.3.2
56+
# lib60870-C 2.3.3
5757
# ##############################################################################
58-
message(STATUS "Patch lib60870")
59-
60-
# test apply the patch
61-
execute_process(
62-
COMMAND git apply --check --ignore-whitespace ../lib60870.patch
63-
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/depends/lib60870
64-
RESULT_VARIABLE GIT_APPLY_CHECK_RESULT
65-
ERROR_VARIABLE GIT_APPLY_CHECK_ERROR
66-
OUTPUT_STRIP_TRAILING_WHITESPACE)
67-
68-
# If the patch can be applied cleanly (i.e., it has not been applied yet), apply
69-
# the patch
70-
if(GIT_APPLY_CHECK_RESULT EQUAL "0")
71-
execute_process(
72-
COMMAND git apply --ignore-whitespace ../lib60870.patch
73-
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/depends/lib60870
74-
RESULT_VARIABLE GIT_APPLY_RESULT
75-
ERROR_VARIABLE GIT_APPLY_ERROR
76-
OUTPUT_STRIP_TRAILING_WHITESPACE)
77-
78-
# Check if the patch was applied successfully
79-
if(NOT GIT_APPLY_RESULT EQUAL "0")
80-
message(FATAL_ERROR "> Failed to apply patch: ${GIT_APPLY_ERROR}")
81-
else()
82-
message(STATUS "> Patch applied successfully.")
83-
endif()
84-
else()
85-
message(STATUS "> Patch already applied or cannot be applied")
86-
endif()
87-
8858
message(STATUS "Add lib60870")
8959
set(BUILD_COMMON
9060
ON
@@ -103,17 +73,17 @@ if(EXISTS "${PROJECT_SOURCE_DIR}/depends/mbedtls/library")
10373
message(STATUS "> copy mbedtls")
10474
file(
10575
MAKE_DIRECTORY
106-
"${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-2.28"
76+
"${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-3.6"
10777
)
10878
file(
10979
COPY depends/mbedtls/library depends/mbedtls/include
11080
depends/mbedtls/CMakeLists.txt
11181
DESTINATION
112-
${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-2.28
82+
"${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-3.6"
11383
)
11484
else()
11585
if(EXISTS
116-
"${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-2.28/library"
86+
"${PROJECT_SOURCE_DIR}/depends/lib60870/lib60870-C/dependencies/mbedtls-3.6/library"
11787
)
11888
message(STATUS " > Use existing copy of mbedtls")
11989
else()
@@ -131,7 +101,7 @@ list(APPEND c104_tests_PRIVATE_LIBRARIES lib60870)
131101
include_directories(
132102
src depends/lib60870/lib60870-C/src/inc/api
133103
depends/lib60870/lib60870-C/src/hal/inc
134-
depends/lib60870/lib60870-C/src/common/inc)
104+
depends/lib60870/lib60870-C/src/common/inc depends/mbedtls/include)
135105

136106
set(c104_SOURCES
137107
src/numbers.h

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ graft depends/lib60870/lib60870-C/config
22
graft depends/lib60870/lib60870-C/src
33
include depends/lib60870/lib60870-C/CMakeLists.txt
44
include depends/lib60870/COPYING
5-
include depends/lib60870.patch
65

76
graft depends/mbedtls/library
87
graft depends/mbedtls/include

0 commit comments

Comments
 (0)