RAII object enabling duplication of the stored options and restoring the original options on destructor.
More...
template<typename PktType>
class isc::dhcp::ScopedPktOptionsCopy< PktType >
RAII object enabling duplication of the stored options and restoring the original options on destructor.
This object enables duplication of the stored options and restoring the original options on destructor. When the object goes out of scope, the initial options are restored. This is applicable in cases when the server is going to invoke a callout (hook library) where the list of options in the packet will be modified. The use of RAII object eliminates the need for explicitly copying and restoring the list of options and is safer in case of exceptions thrown by callouts and a presence of multiple exit points.
- Template Parameters
-
Definition at line 1057 of file pkt.h.