summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Lamm <expeditioneer@gentoo.org>2020-11-29 09:23:00 +0100
committerDennis Lamm <expeditioneer@gentoo.org>2020-11-30 19:37:37 +0100
commita8d57019e0c5031d613cfdf9fc7353c8089d9b2a (patch)
treed26bb4bea6f942eb1e2b0c387c83f33963d8d6d0 /dev-libs/libarcus/files
parentgames-puzzle/fish-fillets: migrate to lua-single.eclass (diff)
downloadgentoo-a8d57019e0c5031d613cfdf9fc7353c8089d9b2a.tar.gz
gentoo-a8d57019e0c5031d613cfdf9fc7353c8089d9b2a.tar.bz2
gentoo-a8d57019e0c5031d613cfdf9fc7353c8089d9b2a.zip
dev-libs/libarcus: bump to 4.8.0
Signed-off-by: Dennis Lamm <expeditoneer@gentoo.org> Signed-off-by: Dennis Lamm <expeditioneer@gentoo.org>
Diffstat (limited to 'dev-libs/libarcus/files')
-rw-r--r--dev-libs/libarcus/files/libarcus-4.8.0-deprecated-protobuf-calls.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/libarcus/files/libarcus-4.8.0-deprecated-protobuf-calls.patch b/dev-libs/libarcus/files/libarcus-4.8.0-deprecated-protobuf-calls.patch
new file mode 100644
index 000000000000..659885d406e3
--- /dev/null
+++ b/dev-libs/libarcus/files/libarcus-4.8.0-deprecated-protobuf-calls.patch
@@ -0,0 +1,30 @@
+--- a/src/Socket_p.h
++++ b/src/Socket_p.h
+@@ -128,9 +128,6 @@
+
+ static const int keep_alive_rate = 500; //Number of milliseconds between sending keepalive packets
+
+- // This value determines when protobuf should warn about very large messages.
+- static const int message_size_warning = 400 * 1048576;
+-
+ // This value determines when protobuf should error out because the message is too large.
+ // Due to the way Protobuf is implemented, messages large than 512MiB will cause issues.
+ static const int message_size_maximum = 500 * 1048576;
+@@ -362,7 +359,7 @@
+ return;
+ }
+
+- uint32_t message_size = message->ByteSize();
++ uint32_t message_size = message->ByteSizeLong();
+ if(platform_socket.writeUInt32(message_size) == -1)
+ {
+ error(ErrorCode::SendFailedError, "Could not send message size");
+@@ -548,7 +545,7 @@
+
+ google::protobuf::io::ArrayInputStream array(wire_message->data, wire_message->size);
+ google::protobuf::io::CodedInputStream stream(&array);
+- stream.SetTotalBytesLimit(message_size_maximum, message_size_warning);
++ stream.SetTotalBytesLimit(message_size_maximum);
+ if(!message->ParseFromCodedStream(&stream))
+ {
+ error(ErrorCode::ParseFailedError, "Failed to parse message:" + std::string(wire_message->data));