mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-04 11:48:30 +00:00
modified: CHANGES.md modified: Makefile.linux modified: Makefile.macosx modified: Makefile.win modified: README.md modified: atest.c modified: audio.h new file: ax25_link.c new file: ax25_link.h modified: ax25_pad.c modified: ax25_pad.h modified: ax25_pad2.c new file: cdigipeater.c new file: cdigipeater.h modified: config.c modified: config.h modified: digipeater.c modified: direwolf.c modified: direwolf.h modified: dlq.c modified: dlq.h modified: doc/Going-beyond-9600-baud.pdf modified: doc/Raspberry-Pi-APRS.pdf modified: doc/Raspberry-Pi-SDR-IGate.pdf modified: doc/User-Guide.pdf modified: gen_packets.c modified: hdlc_rec.c modified: hdlc_send.c modified: hdlc_send.h modified: igate.c modified: log.c modified: log.h modified: multi_modem.c modified: pfilter.c modified: pfilter.h modified: ptt.c modified: recv.c modified: serial_port.c modified: server.c modified: server.h modified: symbols-new.txt modified: tocalls.txt modified: tq.c modified: tq.h modified: waypoint.c modified: xid.c new file: xid.h modified: xmit.c
31 lines
646 B
C
31 lines
646 B
C
|
|
|
|
/* xid.h */
|
|
|
|
#include "ax25_pad.h" // for enum ax25_modulo_e
|
|
|
|
|
|
struct xid_param_s {
|
|
|
|
int full_duplex;
|
|
|
|
// Order is important because negotiation keeps the lower value.
|
|
// We will support only 1 & 2.
|
|
|
|
enum rej_e {implicit_reject=1, selective_reject=2, selective_reject_reject=3 } rej;
|
|
|
|
enum ax25_modulo_e modulo;
|
|
|
|
int i_field_length_rx; /* In bytes. XID has it in bits. */
|
|
|
|
int window_size_rx;
|
|
|
|
int ack_timer; /* "T1" in mSec. */
|
|
|
|
int retries; /* "N1" */
|
|
};
|
|
|
|
|
|
int xid_parse (unsigned char *info, int info_len, struct xid_param_s *result, char *desc, int desc_size);
|
|
|
|
int xid_encode (struct xid_param_s *param, unsigned char *info); |