diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-07-09 19:43:49 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-07-09 19:43:49 +0000 |
commit | 4f018af0f15901dcda46f6b93ebf9db7c0d1b993 (patch) | |
tree | ca0b21fc7d7a0382032cd6af346df6056f03a604 /include/l2cap.h | |
parent | 8fc2bc09804346200619138a9c245be9daac0b6a (diff) |
Add info type and info result definitions
Diffstat (limited to 'include/l2cap.h')
-rw-r--r-- | include/l2cap.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/l2cap.h b/include/l2cap.h index d06eb800..e2fa860e 100644 --- a/include/l2cap.h +++ b/include/l2cap.h @@ -196,6 +196,14 @@ typedef struct { } __attribute__ ((packed)) l2cap_info_rsp; #define L2CAP_INFO_RSP_SIZE 4 +/* info type */ +#define L2CAP_IT_CL_MTU 0x0001 +#define L2CAP_IT_FEAT_MASK 0x0002 + +/* info result */ +#define L2CAP_IR_SUCCESS 0x0000 +#define L2CAP_IR_NOTSUPP 0x0001 + #ifdef __cplusplus } #endif |