Lines Matching refs:rvalue
109 const char *rvalue, in config_parse_geneve_vni() argument
119 assert(rvalue); in config_parse_geneve_vni()
122 r = safe_atou32(rvalue, &f); in config_parse_geneve_vni()
124 … log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse Geneve VNI '%s'.", rvalue); in config_parse_geneve_vni()
129 … log_syntax(unit, LOG_WARNING, filename, line, 0, "Geneve VNI out is of range '%s'.", rvalue); in config_parse_geneve_vni()
146 const char *rvalue, in config_parse_geneve_address() argument
156 assert(rvalue); in config_parse_geneve_address()
159 r = in_addr_from_string_auto(rvalue, &f, &buffer); in config_parse_geneve_address()
161 …ING, filename, line, r, "geneve '%s' address is invalid, ignoring assignment: %s", lvalue, rvalue); in config_parse_geneve_address()
167 …lename, line, 0, "geneve invalid multicast '%s' address, ignoring assignment: %s", lvalue, rvalue); in config_parse_geneve_address()
185 const char *rvalue, in config_parse_geneve_flow_label() argument
195 assert(rvalue); in config_parse_geneve_flow_label()
198 r = safe_atou32(rvalue, &f); in config_parse_geneve_flow_label()
200 …og_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse Geneve flow label '%s'.", rvalue); in config_parse_geneve_flow_label()
206 … "Geneve flow label '%s' not valid. Flow label range should be [0-1048575].", rvalue); in config_parse_geneve_flow_label()
223 const char *rvalue, in config_parse_geneve_ttl() argument
233 assert(rvalue); in config_parse_geneve_ttl()
236 if (streq(rvalue, "inherit")) in config_parse_geneve_ttl()
239 r = safe_atou(rvalue, &f); in config_parse_geneve_ttl()
242 … "Failed to parse Geneve TTL '%s', ignoring assignment: %m", rvalue); in config_parse_geneve_ttl()
248 … "Invalid Geneve TTL '%s'. TTL must be <= 255. Ignoring assignment.", rvalue); in config_parse_geneve_ttl()