IBR-DTNSuite  0.8
ibrcommon/ibrcommon/net/UnicastSocketLowpan.h
Go to the documentation of this file.
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/vinterface.h"
00012 #include "ibrcommon/net/vaddress.h"
00013 #include "ibrcommon/net/lowpansocket.h"
00014 
00015 namespace ibrcommon
00016 {
00017         class UnicastSocketLowpan : public ibrcommon::lowpansocket
00018         {
00019         public:
00020                 UnicastSocketLowpan();
00021                 virtual ~UnicastSocketLowpan();
00022 
00023                 void bind(int panid, const vaddress &address);
00024                 void bind(int panid, const vinterface &iface);
00025         };
00026 }
00027 
00028 #endif /* UNICASTSOCKETLOWPAN_H_ */