├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── bootstrap ├── configure.ac ├── events ├── Makefile.am └── janus_helloworld_evh.c └── plugins ├── Makefile.am └── janus_helloworld_plugin.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/configure.ac -------------------------------------------------------------------------------- /events/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/events/Makefile.am -------------------------------------------------------------------------------- /events/janus_helloworld_evh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/events/janus_helloworld_evh.c -------------------------------------------------------------------------------- /plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/plugins/Makefile.am -------------------------------------------------------------------------------- /plugins/janus_helloworld_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mqp/janus-helloworld-plugin/HEAD/plugins/janus_helloworld_plugin.c --------------------------------------------------------------------------------