How to set special characters in custom_delimiter
#3000
Unanswered
dacalabrese
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I'm trying to configure a
socket
input to receive data stream sent via a TCP server. Messages are unstructured binary data, but I can configure the sender to insert a defined sequence between frames (i.e. messages).This is to prevent messages from being buffered indefinitely. The sequence
1acffc1d
is the hexadecimal representation of the binary data.I've tried the following configuration, with no luck:
Is there a way to specify a delimiter of such type (i.e. byte sequence)? For instance, I tried
"\x1a\xcf\xfc\x1d"
or"\\x1a\\xcf\\xfc\\x1d"
but they are not interpreted as bytes.Thank you!
Beta Was this translation helpful? Give feedback.
All reactions