Isak Styf

Results 11 issues of Isak Styf

I would like to be able to use PAR with go-oidc, but sadly it does not seem to support that. See https://datatracker.ietf.org/doc/html/rfc9126 and https://medium.com/oauth-2/pushed-authorization-requests-draft-adopted-by-oauth-working-group-a1060007150f I am willing to take a...

This PR is fixes #673 I have no clear idea what the actual problem is here, but deadlocks are very frequent when running the unit tests under WSL2 and seem...

Running the unit tests have a near (if not) 100% reproducible deadlock between all of the different output writers, caused by contention of a semaphore deep in the posix file...

This PR fixes #671 by replacing the time.Sleep in killCmd (for linux and unix/mac) with a cancelable context that can be used to stop the kill timer and return to...

Currently when send_interrupt is configured to true (for linux and unix only), the killCmd function sleeps for kill_delay before following up with a kill command as well. If the target...

This change improves the testability of Node by allowing the injected client to be a mock/fake/stub/whateveryouneed. Fixes #846

In Node's SetAttribute only the case for AttributeIDValue returns a nil error, the default case returns a bad attribute error after updating the attributes map. Error here: https://github.com/gopcua/opcua/blob/0d83d1cc736a5db59bfbb31a167d3e9c6b09c845/server/node.go#L216:L218

This is a proposal for allowing the gopcua server to log using slog "without knowing" that log/slog is the actual logging backend. The application using the gopcua server, initialises the...

The session service created allowed range and default in milliseconds, but compared and divided with a time.Duration that is expressed in nanoseconds. The result was that the returned revised timeout...