haiku/headers/os/bluetooth/L2CAP/btL2CAP.h
Oliver Ruiz Dorantes 001662ae04 A bit more styling on main headers
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26743 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-08-02 21:15:02 +00:00

19 lines
461 B
C

/*
* Copyright 2007 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
* All rights reserved. Distributed under the terms of the MIT License.
*/
#ifndef _BTL2CAP_H_
#define _BTL2CAP_H_
#include <bluetooth/bluetooth.h>
struct sockaddr_l2cap {
uint8 l2cap_len; /* total length */
uint8 l2cap_family; /* address family */
uint16 l2cap_psm; /* PSM (Protocol/Service Multiplexor) */
bdaddr_t l2cap_bdaddr; /* address */
};
#endif // _BTL2CAP_H_