Skip to content

[BUG]The definition of LF, EOL, NULL_BYTE is wrong #8

@gokoushiro

Description

@gokoushiro

In rabbitmqstomp.lua:
local LF = "\x0a"
local EOL = "\x0d\x0a"
local NULL_BYTE = "\x00"

However, they do not work properly.
They should be:

local LF = "\n"
local EOL = "\r\n"
local NULL_BYTE = "\0"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions