Lines Matching refs:rvalue

206                 const char *rvalue,  in config_parse_vxlan_address()  argument
216 assert(rvalue); in config_parse_vxlan_address()
229 if (isempty(rvalue)) { in config_parse_vxlan_address()
238 t = netdev_local_address_type_from_string(rvalue); in config_parse_vxlan_address()
247 r = in_addr_from_string_auto(rvalue, &f, &buffer); in config_parse_vxlan_address()
250 "Failed to parse %s=, ignoring assignment: %s", lvalue, rvalue); in config_parse_vxlan_address()
259 … "%s= must be a multicast address, ignoring assignment: %s", lvalue, rvalue); in config_parse_vxlan_address()
265 … "%s= cannot be a multicast address, ignoring assignment: %s", lvalue, rvalue); in config_parse_vxlan_address()
286 const char *rvalue, in config_parse_port_range() argument
296 assert(rvalue); in config_parse_port_range()
299 r = parse_ip_port_range(rvalue, &low, &high); in config_parse_port_range()
302 …ailed to parse VXLAN port range '%s'. Port should be greater than 0 and less than 65535.", rvalue); in config_parse_port_range()
320 const char *rvalue, in config_parse_flow_label() argument
330 assert(rvalue); in config_parse_flow_label()
333 r = safe_atou(rvalue, &f); in config_parse_flow_label()
335 …log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse VXLAN flow label '%s'.", rvalue); in config_parse_flow_label()
341 … "VXLAN flow label '%s' not valid. Flow label range should be [0-1048575].", rvalue); in config_parse_flow_label()
358 const char *rvalue, in config_parse_vxlan_ttl() argument
368 assert(rvalue); in config_parse_vxlan_ttl()
371 if (streq(rvalue, "inherit")) in config_parse_vxlan_ttl()
374 r = safe_atou(rvalue, &f); in config_parse_vxlan_ttl()
377 … "Failed to parse VXLAN TTL '%s', ignoring assignment: %m", rvalue); in config_parse_vxlan_ttl()
383 … "Invalid VXLAN TTL '%s'. TTL must be <= 255. Ignoring assignment.", rvalue); in config_parse_vxlan_ttl()