Allow all printable 7-bit ASCII chars in addresses
This commit is contained in:
parent
a4518a839a
commit
5be0f40405
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue