00001 /* 00002 * UnicastSocket.h 00003 * 00004 * Created on: 28.06.2010 00005 * Author: morgenro 00006 */ 00007 00008 #ifndef UNICASTSOCKETLOWPAN_H_ 00009 #define UNICASTSOCKETLOWPAN_H_ 00010 00011 #include "ibrcommon/net/NetInterface.h" 00012 #include "ibrcommon/net/lowpansocket.h" 00013 00014 namespace ibrcommon 00015 { 00016 class UnicastSocketLowpan : public ibrcommon::lowpansocket 00017 { 00018 public: 00019 UnicastSocketLowpan(); 00020 virtual ~UnicastSocketLowpan(); 00021 00022 void bind(int panid, std::string address = ""); 00023 void bind(int panid, const NetInterface &iface); 00024 }; 00025 } 00026 00027 #endif /* UNICASTSOCKETLOWPAN_H_ */
1.7.1