aboutsummaryrefslogtreecommitdiff
path: root/include/modules/dns.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2025-08-021-1/+1
|
* Get the default DNS timeout from the manager instead of the config.Gravatar Sadie Powell2025-05-141-1/+2
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+2
|
* Add a helper class for creating a reference to a DNS manager.Gravatar Sadie Powell2023-01-051-0/+11
|
* Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-1/+4
|
* Fix some types which were missed when making stuff final.Gravatar Sadie Powell2022-10-301-2/+2
|
* Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-1/+1
|
* Require specifying the repeat argument of the Timer class.Gravatar Sadie Powell2022-05-171-1/+1
|
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-4/+4
|
* Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-2/+6
|
* Remove unused time_t field from the timer system.Gravatar Sadie Powell2021-11-051-1/+1
| | | | | This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules.
* Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-1/+1
|
* Implement support for looking up SRV records in core_dns.Gravatar Sadie Powell2021-05-111-1/+15
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-2/+2
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-2/+1
| |
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-311-4/+4
|\|
| * Add support for per-DNSBL timeouts.Gravatar Sadie Powell2021-03-311-2/+2
| | | | | | | | This should fix the issue of some DNSBLs being slower than others.
| * Fix various documentation comments.Gravatar Sadie Powell2021-03-311-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-01-291-0/+1
|\|
| * Add <dns:enabled>; allows disabling DNS lookups entirely.Gravatar Sadie Powell2021-01-191-0/+1
| | | | | | | | Ref: #1839.
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-9/+21
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-2/+3
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-131-0/+1
|\|
| * Add GetTypeStr to the DNS API.Gravatar Peter Powell2019-10-131-0/+1
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-1/+1
|/
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-1/+1
| | | | GCCs warnings for this are much better than Clangs.
* Move <dns:timeout> out of the core.Gravatar Peter Powell2017-09-031-1/+1
|
* core_dns: add support for txt recordsGravatar Adam2017-04-231-0/+2
| | | | This might be used later by m_dnsbl to get reasons for listings
* core_dns Make question a member of request, move common FindAnswerOfType to ↵Gravatar Adam2016-08-251-3/+16
| | | | be a member of query
* Fail invalid dns responses instead of dropGravatar Adam2015-07-061-0/+1
|
* core_dns Add DNS timeout timer in Process() not in DNS::Request constructorGravatar Attila Molnar2015-05-131-1/+0
|
* core_dns Make MAX_REQUEST_ID unsigned, move it to core_dns from headerGravatar Attila Molnar2015-05-131-6/+0
|
* core_dns Drop incoming packets containing a different question from what we ↵Gravatar Attila Molnar2015-04-271-0/+1
| | | | asked
* core_dns Remove incomplete support for multiple questions per queryGravatar Attila Molnar2015-04-211-2/+2
|
* core_dns Don't store query class code in QuestionGravatar Attila Molnar2015-04-211-5/+4
|
* core_dns Add typedef for request id, change it to uint16_tGravatar Attila Molnar2015-04-211-1/+3
|
* Remove current time parameter of the Timer constructorGravatar Attila Molnar2014-07-101-1/+1
|
* Change allocation of InspIRCd::Timers to be physically part of the object ↵Gravatar Attila Molnar2014-03-151-1/+1
| | | | containing it
* Allow Timers to delete themselves in Tick()Gravatar Attila Molnar2014-01-301-0/+1
|
* Remove whitespace and minor style changesGravatar Attila Molnar2014-01-231-1/+0
|
* Modularize DNSGravatar Adam2013-04-261-0/+193
The DNS modules are temporarily in commands/ so they're loaded automatically Thanks to Attila for helping with much of this.