No.
\n will mean 0x0D 0x0A in a CR LF environment (DOS), 0x0D in a CR environment (Mac Classic), and 0x0A in a NL environment (pretty much everything else). You mean \015\012 (or \x0d\x0a if you’re a hexed person) when dealing with sockets, but even that’s not true, because it’s 0x0D 0x0A only in protocols that define new lines as a CR LF sequence. Even so, most of the time, receiving NL-separated messages in such protocols is generally okay, as per “(Be strict in what you send), but forgiving in what you receive”.
| [reply] [d/l] [select] |
| [reply] |