00001 /* 00002 * Copyright 2006 Baylor University 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef _BLUETOOTH_ANNOUNCE_H_ 00018 #define _BLUETOOTH_ANNOUNCE_H_ 00019 00020 #include <config.h> 00021 00022 #ifdef OASYS_BLUETOOTH_ENABLED 00023 00024 #include <oasys/bluez/BluetoothSDP.h> 00025 #include "Announce.h" 00026 00027 namespace dtn { 00028 00034 class BluetoothAnnounce : public Announce 00035 { 00036 public: 00041 void handle_neighbor_discovered(const std::string& nexthop, 00042 const EndpointID& remote_eid); 00043 00048 size_t format_advertisement(u_char*,size_t); 00049 00050 void reset_interval() { ::gettimeofday(&data_sent_,0); } 00051 00052 virtual ~BluetoothAnnounce() {} 00053 00054 protected: 00055 friend class Announce; 00056 00057 BluetoothAnnounce(); 00058 00059 bool configure(const std::string& name, ConvergenceLayer* cl, 00060 int argc, const char* argv[]); 00061 00062 bdaddr_t cl_addr_; // address of parent CL instance 00063 u_int8_t cl_channel_; // channel used by parent CL 00064 oasys::BluetoothServiceRegistration sdp_reg_; 00065 }; 00066 00067 } // dtn 00068 00069 #endif // OASYS_BLUETOOTH_ENABLED 00070 #endif // _BLUETOOTH_ANNOUNCE_H_