diff options
author | Andrei Pavel <andrei@isc.org> | 2022-08-29 12:13:05 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2022-08-31 18:58:30 +0200 |
commit | 827f13461d5443c635b2d2221a0980f61e6bf5e1 (patch) | |
tree | b371d9a038629f1db03acdf60bfaef1881821039 /src/bin/dhcp6/dhcp6_srv.h | |
parent | [#2556] update version in configure.ac (diff) | |
download | kea-827f13461d5443c635b2d2221a0980f61e6bf5e1.tar.xz kea-827f13461d5443c635b2d2221a0980f61e6bf5e1.zip |
[#2550] remove unused argument in classifyByVendor
Diffstat (limited to 'src/bin/dhcp6/dhcp6_srv.h')
-rw-r--r-- | src/bin/dhcp6/dhcp6_srv.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bin/dhcp6/dhcp6_srv.h b/src/bin/dhcp6/dhcp6_srv.h index e6a0744d55..c439047e4b 100644 --- a/src/bin/dhcp6/dhcp6_srv.h +++ b/src/bin/dhcp6/dhcp6_srv.h @@ -1041,14 +1041,12 @@ public: private: - /// @public /// @brief Assign class using vendor-class-identifier options /// /// @note This is the first part of @ref classifyPacket /// /// @param pkt packet to be classified - /// @param classes a reference to added class names for logging - void classifyByVendor(const Pkt6Ptr& pkt, std::string& classes); + void classifyByVendor(const Pkt6Ptr& pkt); /// @brief Update FQDN based on the reservations in the current subnet. /// |