![]() |
Kea 2.2.0
|
Token representing an IP address as a constant string. More...
#include <token.h>
Inheritance diagram for isc::dhcp::TokenIpAddress:Public Member Functions | |
| TokenIpAddress (const std::string &addr) | |
| Value is set during token construction. More... | |
| void | evaluate (Pkt &pkt, ValueStack &values) |
| Token evaluation (puts value of the constant string on the stack after decoding) More... | |
Public Member Functions inherited from isc::dhcp::Token | |
| virtual | ~Token () |
| Virtual destructor. More... | |
| virtual void | evaluate (Pkt &pkt, ValueStack &values)=0 |
| This is a generic method for evaluating a packet. More... | |
Protected Attributes | |
| std::string | value_ |
| < Constant value (empty string if the IP address cannot be converted) More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from isc::dhcp::Token | |
| static bool | toBool (std::string value) |
| Coverts a (string) value to a boolean. More... | |
Token representing an IP address as a constant string.
This token holds the value of an IP address as a constant string, for instance 10.0.0.1 is 0x10000001
| TokenIpAddress::TokenIpAddress | ( | const std::string & | addr | ) |
Value is set during token construction.
| addr | IP address to be represented as a constant string |
Definition at line 86 of file token.cc.
References isc::asiolink::IOAddress::toBytes(), and value_.
Here is the call graph for this function:
|
virtual |
Token evaluation (puts value of the constant string on the stack after decoding)
| pkt | (ignored) |
| values | (represented IP address will be pushed here) |
Implements isc::dhcp::Token.
Definition at line 102 of file token.cc.
References isc::dhcp::EVAL_DBG_STACK, isc::dhcp::EVAL_DEBUG_IPADDRESS, isc::dhcp::eval_logger, LOG_DEBUG, isc::util::encode::toHex(), and value_.
Here is the call graph for this function:
|
protected |
< Constant value (empty string if the IP address cannot be converted)
Definition at line 207 of file token.h.
Referenced by TokenIpAddress(), and evaluate().