├── .gitignore ├── .travis.yml ├── Build.PL ├── Changes ├── LICENSE ├── META.json ├── README.md ├── cpanfile ├── lib └── Server │ ├── Starter.pm │ └── Starter │ └── Guard.pm ├── minil.toml ├── script └── start_server └── t ├── 00-base.t ├── 01-starter-echod.pl ├── 01-starter.t ├── 02-startfail-server.pl ├── 02-startfail.t ├── 03-starter-unix-echod.pl ├── 03-starter-unix.t ├── 04-starter-dir.t ├── 05-killolddelay-echod.pl ├── 05-killolddelay.t ├── 06-autorestart-echod.pl ├── 06-autorestart.t ├── 07-envdir-print.pl ├── 07-envdir.t ├── 08-wait3.t ├── 09-guard.t ├── 10-bindaddr-server.pl ├── 10-bindaddr.t ├── 11-specified-fd-server.pl ├── 11-specified-fd.t ├── 12-stop-server.pl ├── 12-stop.t ├── 13-unix-daemonize.t ├── 14-without-port-env.pl ├── 14-without-port.t ├── 15-udp-server.pl └── 15-udp.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/Build.PL -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/META.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/cpanfile -------------------------------------------------------------------------------- /lib/Server/Starter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/lib/Server/Starter.pm -------------------------------------------------------------------------------- /lib/Server/Starter/Guard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/lib/Server/Starter/Guard.pm -------------------------------------------------------------------------------- /minil.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/minil.toml -------------------------------------------------------------------------------- /script/start_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/script/start_server -------------------------------------------------------------------------------- /t/00-base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/00-base.t -------------------------------------------------------------------------------- /t/01-starter-echod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/01-starter-echod.pl -------------------------------------------------------------------------------- /t/01-starter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/01-starter.t -------------------------------------------------------------------------------- /t/02-startfail-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/02-startfail-server.pl -------------------------------------------------------------------------------- /t/02-startfail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/02-startfail.t -------------------------------------------------------------------------------- /t/03-starter-unix-echod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/03-starter-unix-echod.pl -------------------------------------------------------------------------------- /t/03-starter-unix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/03-starter-unix.t -------------------------------------------------------------------------------- /t/04-starter-dir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/04-starter-dir.t -------------------------------------------------------------------------------- /t/05-killolddelay-echod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/05-killolddelay-echod.pl -------------------------------------------------------------------------------- /t/05-killolddelay.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/05-killolddelay.t -------------------------------------------------------------------------------- /t/06-autorestart-echod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/06-autorestart-echod.pl -------------------------------------------------------------------------------- /t/06-autorestart.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/06-autorestart.t -------------------------------------------------------------------------------- /t/07-envdir-print.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/07-envdir-print.pl -------------------------------------------------------------------------------- /t/07-envdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/07-envdir.t -------------------------------------------------------------------------------- /t/08-wait3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/08-wait3.t -------------------------------------------------------------------------------- /t/09-guard.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/09-guard.t -------------------------------------------------------------------------------- /t/10-bindaddr-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/10-bindaddr-server.pl -------------------------------------------------------------------------------- /t/10-bindaddr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/10-bindaddr.t -------------------------------------------------------------------------------- /t/11-specified-fd-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/11-specified-fd-server.pl -------------------------------------------------------------------------------- /t/11-specified-fd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/11-specified-fd.t -------------------------------------------------------------------------------- /t/12-stop-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/12-stop-server.pl -------------------------------------------------------------------------------- /t/12-stop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/12-stop.t -------------------------------------------------------------------------------- /t/13-unix-daemonize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/13-unix-daemonize.t -------------------------------------------------------------------------------- /t/14-without-port-env.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/14-without-port-env.pl -------------------------------------------------------------------------------- /t/14-without-port.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/14-without-port.t -------------------------------------------------------------------------------- /t/15-udp-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/15-udp-server.pl -------------------------------------------------------------------------------- /t/15-udp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuho/p5-Server-Starter/HEAD/t/15-udp.t --------------------------------------------------------------------------------