mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
Remove synchrnized and persistent attributes.
Code that was used by them is still there.
This commit is contained in:
parent
5d44735209
commit
61c84a0a40
9 changed files with 4 additions and 90 deletions
|
@ -25,7 +25,6 @@
|
|||
%token TOK_ATTR_OPTIONAL TOK_ATTR_REDEF TOK_ATTR_ROTATE_INTERVAL
|
||||
%token TOK_ATTR_ROTATE_SIZE TOK_ATTR_DEL_FUNC TOK_ATTR_EXPIRE_FUNC
|
||||
%token TOK_ATTR_EXPIRE_CREATE TOK_ATTR_EXPIRE_READ TOK_ATTR_EXPIRE_WRITE
|
||||
%token TOK_ATTR_PERSISTENT TOK_ATTR_SYNCHRONIZED
|
||||
%token TOK_ATTR_RAW_OUTPUT TOK_ATTR_MERGEABLE
|
||||
%token TOK_ATTR_PRIORITY TOK_ATTR_LOG TOK_ATTR_ERROR_HANDLER
|
||||
%token TOK_ATTR_TYPE_COLUMN TOK_ATTR_DEPRECATED
|
||||
|
@ -1308,10 +1307,6 @@ attr:
|
|||
{ $$ = new Attr(ATTR_EXPIRE_READ, $3); }
|
||||
| TOK_ATTR_EXPIRE_WRITE '=' expr
|
||||
{ $$ = new Attr(ATTR_EXPIRE_WRITE, $3); }
|
||||
| TOK_ATTR_PERSISTENT
|
||||
{ $$ = new Attr(ATTR_PERSISTENT); }
|
||||
| TOK_ATTR_SYNCHRONIZED
|
||||
{ $$ = new Attr(ATTR_SYNCHRONIZED); }
|
||||
| TOK_ATTR_ENCRYPT
|
||||
{ $$ = new Attr(ATTR_ENCRYPT); }
|
||||
| TOK_ATTR_ENCRYPT '=' expr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue