├── .gitignore ├── Makefile ├── compile_flags.txt ├── conf ├── after-connect.conf ├── connect.conf ├── disconnect.conf ├── loop.conf └── replace.conf ├── includes ├── client-tester.hpp ├── parse.hpp └── thread.hpp ├── readme.md └── src ├── client-tester.cpp ├── main.cpp └── parse.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .gitconfig 3 | .bash_history 4 | .DS_Store 5 | client-tester 6 | *.o 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/Makefile -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /conf/after-connect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/conf/after-connect.conf -------------------------------------------------------------------------------- /conf/connect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/conf/connect.conf -------------------------------------------------------------------------------- /conf/disconnect.conf: -------------------------------------------------------------------------------- 1 | QUIT :leaving 2 | -------------------------------------------------------------------------------- /conf/loop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/conf/loop.conf -------------------------------------------------------------------------------- /conf/replace.conf: -------------------------------------------------------------------------------- 1 | 42irc 2 | client{2} 3 |
{0} 4 | #42 5 | -------------------------------------------------------------------------------- /includes/client-tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/includes/client-tester.hpp -------------------------------------------------------------------------------- /includes/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/includes/parse.hpp -------------------------------------------------------------------------------- /includes/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/includes/thread.hpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/readme.md -------------------------------------------------------------------------------- /src/client-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/src/client-tester.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsec-infosec/ft_irc-tester/HEAD/src/parse.cpp --------------------------------------------------------------------------------