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
Hi , as the title says, i have an App i want to have nodejs serve the IPC server and Qt c++ as a client app , but how can i send data to ipc server ? is it a json ? if yes what is the signature /format of this json data to make net-ipc accept the sent data from client ?
The text was updated successfully, but these errors were encountered:
hey, the library uses a small header followed by either json or messagepack, optionally compressed by deflate, depending on the configuration.
connection starts at connection.js#_init() where the first 3 bytes of the payload are checked, if its "GET" treat as a websocket upgrade request, if its "IPC" accept the connection directly.
subsequent messages are tagged with a leading varint (variable-length integer) specifying message size, followed by the message itself. check interfaces.js#_write()
after decompression and decoding, the message itself has the following format:
Hi , as the title says, i have an App i want to have nodejs serve the IPC server and Qt c++ as a client app , but how can i send data to ipc server ? is it a json ? if yes what is the signature /format of this json data to make net-ipc accept the sent data from client ?
The text was updated successfully, but these errors were encountered: