Change module name

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28727 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-11-25 18:22:25 +00:00
parent 18c7aa0c9d
commit b3256174a6
@@ -16,7 +16,7 @@
#include <bluetooth/HCI/btHCI.h> #include <bluetooth/HCI/btHCI.h>
#include <l2cap.h> #include <l2cap.h>
#define BT_CORE_DATA_MODULE_NAME "generic/btCoreData/v1" #define BT_CORE_DATA_MODULE_NAME "bluetooth/btCoreData/v1"
struct L2capChannel; struct L2capChannel;
struct L2capFrame; struct L2capFrame;
@@ -40,6 +40,7 @@ struct HciConnection : DoublyLinkedListLinkImpl<HciConnection> {
uint16 mtu; uint16 mtu;
connection_status status; /* ACL connection state */ connection_status status; /* ACL connection state */
uint16 lastCid; uint16 lastCid;
uint8 lastIdent;
DoublyLinkedList<L2capChannel> ChannelList; DoublyLinkedList<L2capChannel> ChannelList;
DoublyLinkedList<L2capFrame> ExpectedResponses; DoublyLinkedList<L2capFrame> ExpectedResponses;
DoublyLinkedList<L2capFrame> OutGoingFrames; DoublyLinkedList<L2capFrame> OutGoingFrames;
@@ -82,19 +83,13 @@ struct L2capChannel : DoublyLinkedListLinkImpl<L2capChannel> {
uint16 dcid; uint16 dcid;
uint16 psm; uint16 psm;
uint8 ident; uint8 ident;
uint8 cfgState;
channel_status state; channel_status state;
ChannelConfiguration* configuration; ChannelConfiguration* configuration;
int cfgState;
L2capEndpoint* endpoint; L2capEndpoint* endpoint;
}; };
#else
struct L2capChannel;
#endif #endif
@@ -127,10 +122,6 @@ struct L2capFrame : DoublyLinkedListLinkImpl<L2capFrame> {
//TODO :struct callout timo; /* RTX/ERTX timeout */ //TODO :struct callout timo; /* RTX/ERTX timeout */
}; };
#else
struct L2capFrame;
#endif #endif