From b17a1b502dfaeb8f4c0b955a684e20d738096a2d Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Fri, 24 Jul 2015 09:08:08 +0000 Subject: [PATCH] Forgotten --- include/patty/ax25/address.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/patty/ax25/address.h diff --git a/include/patty/ax25/address.h b/include/patty/ax25/address.h new file mode 100644 index 0000000..ed501a6 --- /dev/null +++ b/include/patty/ax25/address.h @@ -0,0 +1,19 @@ +#ifndef _PATTY_AX25_ADDRESS_H +#define _PATTY_AX25_ADDRESS_H + +#include +#include + +typedef struct _patty_ax25_address { + char callsign[7]; + + int ssid; + int last; + + union { + int c; + int repeated; + }; +} patty_ax25_address; + +#endif /* _PATTY_AX25_ADDRESS_H */