Forgotten
This commit is contained in:
parent
64ec8a8e5a
commit
b17a1b502d
1 changed files with 19 additions and 0 deletions
19
include/patty/ax25/address.h
Normal file
19
include/patty/ax25/address.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef _PATTY_AX25_ADDRESS_H
|
||||
#define _PATTY_AX25_ADDRESS_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
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 */
|
Loading…
Add table
Reference in a new issue