Tim Schumacher
a96339b72b
LibCore: Move Stream-based sockets into the Core
namespace
2023-02-13 00:50:07 +00:00
Linus Groh
6e19ab2bbc
AK+Everywhere: Rename String to DeprecatedString
...
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00
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