Finally getting around to implementing more of the spec, I tell ya

This commit is contained in:
XANTRONIX Development 2015-07-28 00:07:24 -05:00 committed by XANTRONIX Industrial
parent 3848388886
commit d7e40110a5
2 changed files with 12 additions and 1 deletions

View file

@ -32,6 +32,17 @@ enum patty_ax25_sock_status {
typedef struct _patty_ax25_sock { typedef struct _patty_ax25_sock {
enum patty_ax25_sock_status status; enum patty_ax25_sock_status status;
time_t timer_ack;
time_t timer_response;
time_t timer_keepalive;
int n_maxlen;
int n_retry;
int n_outstanding;
int seq_send;
int seq_recv;
patty_ax25_if * iface; patty_ax25_if * iface;
patty_ax25_address * local; patty_ax25_address * local;
patty_ax25_address * remote; patty_ax25_address * remote;

View file

@ -1,7 +1,7 @@
include ../mk/build.mk include ../mk/build.mk
INCLUDE_PATH = ../include INCLUDE_PATH = ../include
HEADER_SUBDIR = birch HEADER_SUBDIR = patty
CC = $(CROSS)cc CC = $(CROSS)cc
CFLAGS = $(CGFLAGS) -fPIC -Wall -O2 -I$(INCLUDE_PATH) CFLAGS = $(CGFLAGS) -fPIC -Wall -O2 -I$(INCLUDE_PATH)