Changeset 5406 for source/ariba/utility/transport/rfcomm/rfcomm.hpp
- Timestamp:
- Jul 29, 2009, 10:25:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/rfcomm/rfcomm.hpp
r5289 r5406 11 11 #include <boost/asio/io_service.hpp> 12 12 13 #include "ariba/utility/logging/Logging.h" 14 13 15 namespace ariba { 14 16 namespace transport { … … 18 20 19 21 class link_info; 22 class link_data; 20 23 21 24 /** … … 25 28 */ 26 29 class rfcomm : public transport_protocol { 30 use_logging_h(rfcomm) 27 31 public: 28 32 rfcomm( uint16_t channel ); … … 42 46 transport_listener* listener; 43 47 bluetooth::rfcomm::acceptor* acceptor; 48 int accept_retries; 49 link_data* send_data; 44 50 45 51 void start_accept(); … … 60 66 link_info* info, size_t size, uint8_t* buffer ); 61 67 62 void remove_info(link_info* info);68 void shutdown(link_info* info); 63 69 }; 64 70
Note:
See TracChangeset
for help on using the changeset viewer.