
A. 2007/07/06 03:00 Configuration file format issue
   Example: Must use single character delimiters (=; \t) between 'default' option elements 

   This will not work:

	 'default flush_interval = 60'


   These will work:

	 'default flush_interval=60'
	or
	 'default flush_interval 60'


B. 2007/07/06 03:06 Configuration file does not support end of line escapes
   Example: Must list all format fields on same line, cannot break into multiple lines for readability

   This will not work:

	 format console = sancp_id \
			src_ip_dotted,\ 
			dst_ip_dotted

   This will work:

	 format console sancp_id,src_ip_dotted,dst_ip_dotted
	or
	 format console sancp_id src_ip_dotted dst_ip_dotted


C. 2007/08/20 00:04  Does not compile on AMD64 

   please submit patches to sancp-devel@sourceforge.net, -John
    


D. 2007/08/21 21:00  Duplicate vars listed in known_ports are not eliminated when reading the configuration file.
	             FIX: need only one occurrance to persist.
  

     These duplicate 'http' will persist in configuration output when recreated.
	
	var tcp 6
	var http 80
	known_ports tcp http http


