Hi Gustavo, > link_type says if our link is raw, connection less or connection oriented. > > Signed-off-by: Gustavo F. Padovan <padovan@xxxxxxxxxxxxxx> > --- > include/net/bluetooth/l2cap.h | 5 +++++ > net/bluetooth/l2cap_core.c | 30 +++++++++++------------------- > net/bluetooth/l2cap_sock.c | 30 +++++++++++++++++++++++------- > 3 files changed, 39 insertions(+), 26 deletions(-) > > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h > index dc721ca..6915c43 100644 > --- a/include/net/bluetooth/l2cap.h > +++ b/include/net/bluetooth/l2cap.h > @@ -295,6 +295,7 @@ struct l2cap_chan { > __u16 omtu; > __u16 flush_to; > __u8 mode; > + __u8 link_type; > > __le16 sport; > > @@ -384,6 +385,10 @@ struct l2cap_conn { > #define L2CAP_INFO_FEAT_MASK_REQ_SENT 0x04 > #define L2CAP_INFO_FEAT_MASK_REQ_DONE 0x08 > > +#define L2CAP_LINK_RAW 1 > +#define L2CAP_LINK_CONNLESS 2 > +#define L2CAP_LINK_ORIENTED 3 > + the name ORIENTED is a pretty bad name. Use CONN_ORIENTED and CONN_LESS to make this more clear. And use CONN_LESS instead of CONNLESS to have this in sync with other constants we have. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html