You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
samples/net/nats/src/nats.c right now contains the bulk of the NATS protocol and is not considered part of Zephyr. It needs to be moved to be part of Zephyr OS and provide an API that applications can use instead of including the implementation in the application directly.
The text was updated successfully, but these errors were encountered:
The server object was being freed immediately if JS lost its reference
to it; instead it should only be freed if explicitly closed and all its
connections are closed.
To track this properly, store open connections within the server handle
they are associated with, and store a global list of servers instead of
connections.
Fixeszephyrproject-rtos#1468
Signed-off-by: Geoff Gustafson <[email protected]>
samples/net/nats/src/nats.c right now contains the bulk of the NATS protocol and is not considered part of Zephyr. It needs to be moved to be part of Zephyr OS and provide an API that applications can use instead of including the implementation in the application directly.
The text was updated successfully, but these errors were encountered: