Allow all printable 7-bit ASCII chars in addresses

This commit is contained in:
XANTRONIX Development 2020-07-10 15:58:35 -04:00 committed by XANTRONIX Industrial
parent a4518a839a
commit 5be0f40405

View file

@ -58,7 +58,7 @@ typedef struct _patty_ax25_if patty_ax25_if;
#include <patty/ax25/server.h>
#define PATTY_AX25_ADDR_CHAR_VALID(c) \
((c >= 0x20 && c <= 0x5a))
((c >= 0x20 && c <= 0x7e))
#define PATTY_AX25_ADDR_OCTET_LAST(c) \
((c & 0x01) == 0x01)