Tom
|
49de4d5f33
|
LibDNS: Remove the 'DNS' prefix from the various type and class names
Since all types and class names live in the DNS namespace, we don't
need to spell it out twice each time.
|
2022-04-15 16:34:26 +01:00 |
|
Tom
|
be4a4144f2
|
LookupServer: Move DNS related code into new LibDNS library
This allows other code to use the DNSPacket class, e.g. when sent
over IPC.
|
2022-04-15 16:34:26 +01:00 |
|
Idan Horowitz
|
086969277e
|
Everywhere: Run clang-format
|
2022-04-01 21:24:45 +01:00 |
|
Linus Groh
|
46ad69cd1e
|
LookupServer: Fix confusing copy/paste error in debug message
|
2022-03-27 18:39:47 +01:00 |
|
Lenny Maiorani
|
0b7baa7e5a
|
Services: Use default constructors/destructors
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules
"The compiler is more likely to get the default semantics right and
you cannot implement these functions better than the compiler."
|
2022-03-24 20:09:26 -07:00 |
|
sin-ack
|
e212514bbf
|
LookupServer: Return with failure result when lookup fails
This was missed in 4ca0669d1e and the
error condition would still fall through to an ErrorOr unwrapping which
caused a crash.
|
2022-03-20 12:09:31 +03:30 |
|
Itamar
|
3a71748e5d
|
Userland: Rename IPC ClientConnection => ConnectionFromClient
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
| rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
| rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
|
2022-02-25 22:35:12 +01:00 |
|