Commit 9f8beac5 authored by Maria Jan Matejka's avatar Maria Jan Matejka
Browse files

Filter: trying to drop the sparse two-byte instruction code

parent 73509144
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -64,12 +64,21 @@
  F(clist_add_del,	'C', 'a') \
  F(roa_check,		'R', 'C')

enum filter_instruction_code {
  fi_invalid = 0,
#define F(c,a,b) fi_##c,
FI_LIST
#undef F
};

/*
enum filter_instruction_code {
#define F(c,a,b) \
  fi_##c = FI_TWOCHAR(a,b),
FI_LIST
#undef F
};
*/

struct f_inst {		/* Instruction */
  struct f_inst *next;	/* Structure is 16 bytes, anyway */