2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

style (indentation fix)

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/f2f200910@280 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
JINMEI Tatuya 2009-10-31 07:02:34 +00:00
parent e7f8965c39
commit aa8ce4a2ed

View File

@ -20,17 +20,17 @@
#include "zoneset.h" #include "zoneset.h"
class ParkingLot { class ParkingLot {
public: public:
explicit ParkingLot(int port); explicit ParkingLot(int port);
virtual ~ParkingLot() {}; virtual ~ParkingLot() {};
int getSocket() { return(sock); } int getSocket() { return(sock); }
void processMessage(); void processMessage();
void command(std::pair<std::string,std::string>); void command(std::pair<std::string,std::string>);
private: private:
isc::dns::Rdata::RdataPtr ns1, ns2, ns3, a, aaaa, soa; isc::dns::Rdata::RdataPtr ns1, ns2, ns3, a, aaaa, soa;
ZoneSet zones; ZoneSet zones;
int sock; int sock;
}; };
#endif // __PARKINGLOT_H #endif // __PARKINGLOT_H