00001 #ifndef _AL_H_
00002 #define _AL_H_
00003
00004
00005
00006
00007
00008 typedef enum { NoAL, AL1, AL2, AL3, AL1M, AL2M, AL3M, Custom } al_type;
00009
00010
00011
00012
00013
00014 typedef struct {
00015
00016 al_type type;
00017
00018 int framed;
00019 int seq_num;
00020 int rcpc_code;
00021 int rcpc_rate;
00022 int arq_type;
00023 int crc_bytes;
00024 int old_threshold;
00025
00026 } channel_info;
00027
00028
00029 #define DEF_RCPC_RATE 24
00030 #define DEF_CRC_BYTES 2
00031 #define DEF_OLD_THRESH 10
00032
00033 #endif
00034
00035