Skip to content

Commit

Permalink
Bluetooth: Add state tracking to struct l2cap_chan
Browse files Browse the repository at this point in the history
Now socket state is tracked by struct sock and channel state is tracked by
chan->state. At this point both says the same, but this is going to change
when we add AMP Support for example.

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
  • Loading branch information
Gustavo F. Padovan committed Jun 13, 2011
1 parent ba3bd0e commit 89bc500
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 54 deletions.
3 changes: 3 additions & 0 deletions include/net/bluetooth/l2cap.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ struct l2cap_chan {

struct l2cap_conn *conn;

__u8 state;

__le16 psm;
__u16 dcid;
__u16 scid;
Expand Down Expand Up @@ -365,6 +367,7 @@ struct l2cap_ops {
struct l2cap_chan *(*new_connection) (void *data);
int (*recv) (void *data, struct sk_buff *skb);
void (*close) (void *data);
void (*state_change) (void *data, int state);
};

struct l2cap_conn {
Expand Down
Loading

0 comments on commit 89bc500

Please sign in to comment.