Implementing Communications Through a Device File. sct_config could potentiall communicate with a kernel module through one of several mechanisms: /proc, sysctl, and through a device file. Only sysctl is curently implemented. A device file is considered the best design, since it's the most flexible and most "unixish" - everything is a file. sycalltrack will have two device files, '/dev/sct_ctrl/', which will be used to control the module (inject rules, read the current rules, etc) and '/dev/sct_log', which will be read only and used to read the filter matches. Work on the device file is well underway - we expect to have it ready Real Soon Now(tm).