Skip to content

Commit

Permalink
Removed Some Cluttered Files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguitian1 committed May 24, 2023
1 parent 1a47a4d commit 928df51
Show file tree
Hide file tree
Showing 25 changed files with 7 additions and 1,220 deletions.
10 changes: 6 additions & 4 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
"C:\\msys64\\mingw64\\include"
],
"defines": [
"_DEBUG",
Expand All @@ -18,15 +18,17 @@
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
"C:\\msys64\\mingw64\\include",
"C:\\msys64\\home\\Joeyc\\GrailGUI\\**",
"C:\\msys64\\ucrt64\\include\\**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
"cStandard": "gnu17", // No gnu20 std exists yet
"compilerPath": "C:/msys64/mingw64/bin/g++.exe",
"cStandard": "gnu17",
"intelliSenseMode": "windows-gcc-x64",
"cppStandard": "gnu++20"
}
Expand Down
2 changes: 1 addition & 1 deletion src/csp/IPV4Socket.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ IPV4Socket::IPV4Socket(uint16_t port) : Socket(port) {
sockaddr_in *sockAddr = (sockaddr_in *)sockaddress;
sockAddr->sin_family = AF_INET;
sockAddr->sin_addr.s_addr = INADDR_ANY;
sockAddr->sin_port = htons(port);
sockAddr->sin_port = htons(port); // 1025 = 00000000 00000000 00000100 00000001 0x00000401
::bind(sckt, (struct sockaddr *)sockAddr, sizeof(sockaddr_in));
testResult(listen(sckt, 20), __FILE__, __LINE__, Errcode::LISTEN);
}
Expand Down
58 changes: 0 additions & 58 deletions src/xp/portable-networking/csp/BenchmarkCSPClient.cc

This file was deleted.

278 changes: 0 additions & 278 deletions src/xp/portable-networking/csp/CSPClient.cc

This file was deleted.

Loading

0 comments on commit 928df51

Please sign in to comment.