Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-07 | Avoid leaking socket filedescriptors | Florent Le Coz | |
When trying the various results of getaddrinfo, we forgot to close the socket when one fails, before trying the next one. Also use the destructor to make sure we do not have some other unrelated leak. | |||
2015-11-05 | Add verifyCert field into the database | Florent Le Coz | |
2015-11-05 | Only include the coverage flags when compiling with gcc | Florent Le Coz | |
2015-11-05 | Fix a clang warning | Florent Le Coz | |
2015-11-05 | Add a CI build with clang | Florent Le Coz | |
2015-11-05 | Make the CA file configurable | Florent Le Coz | |
2015-11-05 | Provide an adhoc option to let user pass the cert verif for some IRC servers | Florent Le Coz | |
2015-11-02 | Fix the build without botan, caused by credentials_manager | Florent Le Coz | |
2015-11-02 | Verify TLS certificate with the given hostname, instead of a hardcoded one | Florent Le Coz | |
2015-11-02 | Fix the initial IRC nickname (was using realname, by mistake) | Florent Le Coz | |
2015-11-02 | Verify the remote TLS certificates using the system-wide trusted CAs | Florent Le Coz | |
2015-10-31 | Fix the logger test when built without systemd | Florent Le Coz | |
2015-10-31 | Add a IoTester class | Florent Le Coz | |
2015-10-31 | Do not forget to implement a method | Florent Le Coz | |
2015-10-31 | Remove a useless assignment | Florent Le Coz | |
2015-10-31 | Implement a basic webirc support | Florent Le Coz | |
See https://kiwiirc.com/docs/webirc fix #3135 | |||
2015-10-31 | Fix the double sending of the USER command | Florent Le Coz | |
2015-10-31 | Remove some useless includes | Florent Le Coz | |
2015-10-31 | Run the database tests with an in-memory sqlite db | Florent Le Coz | |
2015-10-31 | Add a few tests | Florent Le Coz | |
2015-10-31 | Only run “make coverage” in one CI build | Florent Le Coz | |
2015-10-30 | Remove the build+test script, just specify everything in the CI file | Florent Le Coz | |
2015-10-29 | Add a .gitignore file | Florent Le Coz | |
2015-10-29 | Only download Catch when the test_suite target is built | Florent Le Coz | |
2015-10-29 | Remove a write to std::cout from Database’s constructor | Florent Le Coz | |
2015-10-29 | Make lcov gcov etc optional | Florent Le Coz | |
make coverage will display an error instead | |||
2015-10-29 | make coverage is only available with a debug build | Florent Le Coz | |
2015-10-29 | Document the test and coverage things in the INSTALL file | Florent Le Coz | |
2015-10-29 | Add code coverage support | Florent Le Coz | |
make coverage runs the test_suite and generates a report | |||
2015-10-29 | Use Catch for our test suite | Florent Le Coz | |
`make check` is also added to compile and run the tests Catch is fetched with cmake automatically into the build directory when needed | |||
2015-10-28 | Refactor XmppParser::end_element to make it clearer | Florent Le Coz | |
Both for me, and apparently for clang static analyzer, who reported a (imo) false positive. | |||
2015-10-26 | Style, add a few “this->” | Florent Le Coz | |
2015-10-26 | Fix some trivial issues reported by cppcheck | Florent Le Coz | |
2015-10-26 | Fix a build issue when compiling without cares | Florent Le Coz | |
2015-10-26 | Fix the jidprep tests when built without libidn | Florent Le Coz | |
2015-10-26 | Test a different way to do our CI | Florent Le Coz | |
Introduce a script, which is called with different parameters, to have a number of builds done with a different configuration, without repeating things too much. | |||
2015-10-26 | Remove a unused_parameter warning | Florent Le Coz | |
2015-10-26 | Remove some more debug thing | Florent Le Coz | |
2015-10-26 | Introduce a basic .gitlab-ci.yml file | Florent Le Coz | |
2015-10-26 | Remove some debug thing that should not have been committed | Florent Le Coz | |
2015-10-24 | Display a success message at the end of the test suite | Florent Le Coz | |
2015-10-24 | Use “using” instead of typedef | Florent Le Coz | |
2015-10-24 | Remove an unused include | Florent Le Coz | |
2015-10-24 | Some little fixes in test.cpp | Florent Le Coz | |
2015-10-24 | Only compile database.cpp if configured with litesql | Florent Le Coz | |
2015-10-24 | Add the network module to the test_suite | Florent Le Coz | |
Because we added a network unit test | |||
2015-10-15 | Separate the DNS resolution logic from the TCP communication logic | Florent Le Coz | |
fix #3137 | |||
2015-10-12 | Introduce the realname_from_jid option | Florent Le Coz | |
When set to true, the realname and username are extracted (by default) from the user’s JID fix #3136 | |||
2015-10-12 | Provide the “realname_customization” option | Florent Le Coz | |
ref #3136 | |||
2015-10-12 | The realname is also saved as an IrcClient member | Florent Le Coz | |