git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26232 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-07-02 21:12:07 +00:00
parent ade530ec1d
commit 75c310bc5b
+20 -20
View File
@@ -1,21 +1,21 @@
/* /*
* Copyright 2007 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com * Copyright 2007 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
* *
* All rights reserved. Distributed under the terms of the MIT License. * All rights reserved. Distributed under the terms of the MIT License.
* *
*/ */
#ifndef _BTL2CAP_H_ #ifndef _BTL2CAP_H_
#define _BTL2CAP_H_ #define _BTL2CAP_H_
#include <bluetooth/bluetooth.h> #include <bluetooth/bluetooth.h>
struct sockaddr_l2cap { struct sockaddr_l2cap {
uint8 l2cap_len; /* total length */ uint8 l2cap_len; /* total length */
uint8 l2cap_family; /* address family */ uint8 l2cap_family; /* address family */
uint16 l2cap_psm; /* PSM (Protocol/Service Multiplexor) */ uint16 l2cap_psm; /* PSM (Protocol/Service Multiplexor) */
bdaddr_t l2cap_bdaddr; /* address */ bdaddr_t l2cap_bdaddr; /* address */
}; };
#endif #endif