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
I have an remote OSC-Server which cends state information back to a client. I cannot seem to find a way to listen for a reply for a msg sent by a client.
oscC:=osc.NewClient("127.0.0.1", 9000)
iferr:=oscC.Send(osc.NewMessage("/system/server-info")); err!=nil {
fmt.Println(err)
}
// How to receive the servers reply?
The text was updated successfully, but these errors were encountered:
That is what I did try. However oscC.Send() seems to open a new port on every message and therefore the response does not reach the port I am listening on with the server. (The server I send the messages to answers and the same port the message came from.)
I have an remote OSC-Server which cends state information back to a client. I cannot seem to find a way to listen for a reply for a msg sent by a client.
The text was updated successfully, but these errors were encountered: