Whats happen if an ; (semicolon) or /n (LF) is in the date send by a node ?
Development
3
Posts
3
Posters
1.4k
Views
1
Watching
-
I think the \n or the ; should be encoded differently.
In facts, the protocol says that the message is finished by a \n . So, the first one which will be encountered will mark the end of the message.So to be concise :
0;3;0;9;1;foo\nbar\n will be understood as 0;3;0;9;1;foo\nFor the ; I think it's not a problem ? Haven't tried yet.