1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

IPv4: More work on UDP support.

I'm now able to connect to a simple UDP server on my host machine and
exchange some data. Very cool! :^)
This commit is contained in:
Andreas Kling 2019-03-13 15:40:30 +01:00
parent 48431b3535
commit 4dddf949c8
4 changed files with 34 additions and 10 deletions

View file

@ -46,7 +46,7 @@ int main(int argc, char** argv)
return 1;
}
const char* addr_str = "192.168.5.1";
const char* addr_str = "127.0.0.1";
if (argc > 1)
addr_str = argv[1];