Skip to content
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
4e23c46
add NoContent code
dorin-ga Mar 13, 2026
4079ca9
handle code 204 as success
dorin-ga Mar 13, 2026
f2aa42d
treat code 204 as valid response
dorin-ga Mar 13, 2026
1849945
allow 204 for sdk error event
dorin-ga Mar 16, 2026
7911d53
add response code constants
dorin-ga Mar 16, 2026
58c5ed8
print correct status code
dorin-ga Mar 16, 2026
2b08477
http interface
dorin-ga Mar 18, 2026
913e16c
default http implementation
dorin-ga Mar 18, 2026
d592130
use http impl
dorin-ga Mar 18, 2026
ec57ac4
changes to processRequestResponse
dorin-ga Mar 19, 2026
ae729b3
fix debug logs
dorin-ga Mar 19, 2026
bf5af41
add virtual dtor for http api
dorin-ga Mar 23, 2026
c26dcb1
add enum for sdk error
dorin-ga Mar 23, 2026
763df97
simplify code
dorin-ga Mar 23, 2026
0185451
sanity check for impl
dorin-ga Mar 23, 2026
d095251
return error is response code is invalid
dorin-ga Apr 1, 2026
e086082
missing return code
dorin-ga Apr 1, 2026
24090ca
fix: check response status before parsing JSON in init request
Gogoshika-ga Apr 2, 2026
997bb0a
Fix: Early-return an empty string_view when packet is empty.
Gogoshika-ga Apr 2, 2026
d544623
fix: use correct format specifier %ld for status code log
Gogoshika-ga Apr 2, 2026
b932426
move GAHttpWrapper to public include and allow registering a custom H…
Gogoshika-ga Apr 2, 2026
029ce47
add HTTP interface tests and README documentation
Gogoshika-ga Apr 2, 2026
b7af985
fix MSVC min macro conflict in GAUtilities
Gogoshika-ga Apr 2, 2026
1761269
update github actions to prevent node.js warnings
Gogoshika-ga Apr 2, 2026
ab2563b
rename GAHttpWrapper to GAHttpClient
Gogoshika-ga Apr 2, 2026
a3dc128
fix NOMINMAX for windows
Gogoshika-ga Apr 2, 2026
ed98ecf
return proper error codes
dorin-ga Apr 2, 2026
0df8c95
require a valid http client only after initialization
dorin-ga Apr 20, 2026
4e2d068
initialize http client when calling init
dorin-ga Apr 20, 2026
0073f0e
change to public interface for http client
dorin-ga Apr 20, 2026
d0c2475
add vcpkg support
dorin-ga Apr 22, 2026
3452f3b
modify cmake to use vcpkg
dorin-ga Apr 22, 2026
fc80df5
remove prebuilt libraries, use vcpkg instead
dorin-ga Apr 22, 2026
1ab09d8
vcpkg support
dorin-ga Apr 22, 2026
dd0b29f
add vcpkg to workflow
dorin-ga Apr 22, 2026
3dc87a8
option to use vcpkg in cmake
dorin-ga Apr 22, 2026
61f67af
moved toolchain file to cmake
dorin-ga Apr 22, 2026
5931ce4
fix triplet generation
dorin-ga Apr 22, 2026
f174143
set flag if the client has already been initialized
dorin-ga Apr 22, 2026
92c30b8
assure client is initialized from the calling thread
dorin-ga Apr 22, 2026
b3e4c00
move http client initialization on init
dorin-ga Apr 22, 2026
be5c117
use curl with openssl
dorin-ga Apr 23, 2026
4561d94
triplet detection for vcpkg
dorin-ga Apr 23, 2026
e93337f
fix triplet
dorin-ga Apr 23, 2026
1f6c55c
fix triplet
dorin-ga Apr 23, 2026
6a2366a
update vcpkg baseline
dorin-ga Apr 23, 2026
5829755
detect cmake osx architecture
dorin-ga Apr 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/gameanalytics/GAEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ namespace gameanalytics
responseEnum = http.sendEventsInArray(dataDict, payloadArray);
#endif

if (responseEnum == http::Ok)
if (responseEnum == http::Ok || responseEnum == http::NoContent)
{
// Delete events
store::GAStore::executeQuerySync(deleteSql);
Expand Down
Loading
Loading