forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
26 lines (19 loc) · 1.04 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
This changelog reports changes visible through the public API. Internal refactorings and bug
fixes are not reported here.
2022-05-04 Julius Pfrommer <julius.pfrommer at iosb.fraunhofer.de>
* Server port and hostname configuration
Instead of configuring the port number in the server's
"NetworkLayer", the server configuration now takes a list of
ServerURLs like `opc.tcp://my-server:4840` or
`opc.wss://localhost:443`. The URLs are used both for discovery
and to set up the server sockets based on the defined hostnames
(and ports).
The default is to listen on all interfaces with port 4840 for
incoming TCP connections.
2022-01-12 Mark Giraud <mark.giraud at iosb.fraunhofer.de>
* Empty arrays always match the array dimensions
We consider empty arrays (also null-arrays) to have implied array
dimensions [0,0,...]. So they always match the array dimensions
defined in the variable. With this, the initialization of
variables without a defined value has been simplified.
We now create a null array if one is required.