locka99 / opcua

A client and server implementation of the OPC UA specification written in Rust
Mozilla Public License 2.0
496 stars 131 forks source link

Session Name configuration #94

Closed pulzzedavid closed 3 years ago

pulzzedavid commented 3 years ago

Looks like session name is hard coded.

let session_name = UAString::from("Rust OPCUA Client");

Would be good to have it configurable. If configurable session name is currently supported, some pointer would be much appreciated.

locka99 commented 3 years ago

I've made it configurable through a config file and through the builder.

pulzzedavid commented 3 years ago

Thanks, much appreciate a quick turn around. Will test it out.