├── .gitignore ├── Eventlog to Syslog.sln ├── Eventlog to Syslog.vcproj ├── Eventlog to Syslog.vcxproj ├── Eventlog to Syslog.vcxproj.filters ├── Messages_ENU.bin ├── check.c ├── check.h ├── dhcp.c ├── dhcp.h ├── dns.c ├── dns.h ├── eventlog.c ├── eventlog.h ├── evtsys.cfg ├── getopt.c ├── getopt.h ├── installer.nsi ├── license ├── log.c ├── log.h ├── loop.c ├── main.c ├── main.h ├── messages.h ├── messages.mc ├── messages.rc ├── plugin-login.c ├── plugin-login.h ├── registry.c ├── resource.h ├── resources.rc ├── service.c ├── service.h ├── support.c ├── syslog.c ├── syslog.h ├── ver.h ├── ver.rc ├── winevent.c ├── winevent.h ├── wsock.c └── wsock.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/.gitignore -------------------------------------------------------------------------------- /Eventlog to Syslog.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/Eventlog to Syslog.sln -------------------------------------------------------------------------------- /Eventlog to Syslog.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/Eventlog to Syslog.vcproj -------------------------------------------------------------------------------- /Eventlog to Syslog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/Eventlog to Syslog.vcxproj -------------------------------------------------------------------------------- /Eventlog to Syslog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/Eventlog to Syslog.vcxproj.filters -------------------------------------------------------------------------------- /Messages_ENU.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/Messages_ENU.bin -------------------------------------------------------------------------------- /check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/check.c -------------------------------------------------------------------------------- /check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/check.h -------------------------------------------------------------------------------- /dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/dhcp.c -------------------------------------------------------------------------------- /dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/dhcp.h -------------------------------------------------------------------------------- /dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/dns.c -------------------------------------------------------------------------------- /dns.h: -------------------------------------------------------------------------------- 1 | /* dns.c header file */ 2 | 3 | int get_hostname(char *, int); -------------------------------------------------------------------------------- /eventlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/eventlog.c -------------------------------------------------------------------------------- /eventlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/eventlog.h -------------------------------------------------------------------------------- /evtsys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/evtsys.cfg -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/getopt.c -------------------------------------------------------------------------------- /getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/getopt.h -------------------------------------------------------------------------------- /installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/installer.nsi -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/license -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/log.h -------------------------------------------------------------------------------- /loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/loop.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/main.h -------------------------------------------------------------------------------- /messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/messages.h -------------------------------------------------------------------------------- /messages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/messages.mc -------------------------------------------------------------------------------- /messages.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 "Messages_ENU.bin" 3 | -------------------------------------------------------------------------------- /plugin-login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/plugin-login.c -------------------------------------------------------------------------------- /plugin-login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/plugin-login.h -------------------------------------------------------------------------------- /registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/registry.c -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/resource.h -------------------------------------------------------------------------------- /resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/resources.rc -------------------------------------------------------------------------------- /service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/service.c -------------------------------------------------------------------------------- /service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/service.h -------------------------------------------------------------------------------- /support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/support.c -------------------------------------------------------------------------------- /syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/syslog.c -------------------------------------------------------------------------------- /syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/syslog.h -------------------------------------------------------------------------------- /ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/ver.h -------------------------------------------------------------------------------- /ver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/ver.rc -------------------------------------------------------------------------------- /winevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/winevent.c -------------------------------------------------------------------------------- /winevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/winevent.h -------------------------------------------------------------------------------- /wsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/wsock.c -------------------------------------------------------------------------------- /wsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zensquare/evtsys/HEAD/wsock.h --------------------------------------------------------------------------------