0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-16 18:35:19 +00:00

Attributes declared in config can be bytestrings

This commit is contained in:
katerina.kubecova 2023-09-18 14:07:59 +02:00 committed by Maria Matejka
parent 8cc9d198c7
commit cc122bf0c2
2 changed files with 4 additions and 4 deletions

View File

@ -869,10 +869,6 @@
l->attrs[0].u.data = v1.val.i;
break;
case EAF_TYPE_OPAQUE:
runtime( "Setting opaque attribute is not allowed" );
break;
case EAF_TYPE_IP_ADDRESS:;
int len = sizeof(ip_addr);
struct adata *ad = lp_alloc(fs->pool, sizeof(struct adata) + len);
@ -881,6 +877,7 @@
l->attrs[0].u.ptr = ad;
break;
case EAF_TYPE_OPAQUE:
case EAF_TYPE_AS_PATH:
case EAF_TYPE_INT_SET:
case EAF_TYPE_EC_SET:

View File

@ -294,6 +294,9 @@ ca_lookup(pool *p, const char *name, int f_type)
case T_LCLIST:
ea_type = EAF_TYPE_LC_SET;
break;
case T_BYTESTRING:
ea_type = EAF_TYPE_OPAQUE;
break;
default:
cf_error("Custom route attribute of unsupported type");
}