[protobuf] [Announcement] Protocol Buffers Version 27.3 is Released!

2024-07-31 Thread 'Hong Shin' via Protocol Buffers
You can view the release and complete release notes on GitHub . If you experience any issues with the release, please file a bug or post on the Protocol Buffers forum

[protobuf] [Announcement] Protocol Buffers Version 27.0-rc3 is Released!

2024-05-14 Thread 'Hong Shin' via Protocol Buffers
You can view the release and complete release notes on GitHub . If you experience any issues with the release, please file a bug or post on the Protocol Buffers forum

[protobuf] Protocol Buffers Version 24.3 is Released!

2023-09-07 Thread 'Hong Shin' via Protocol Buffers
This version includes the following non-breaking changes: C++ - Workaround ICE on gcc 7.5 by not having one overload call the other one with a (#13808 ) (398a84c

[protobuf] Re: How to control the output size of GzipOutputStream?

2011-05-23 Thread Shin
a ZeroCopyOutputStream > implementation that writes to the socket, like FileOutputStream, which > allows you to control the buffer size. Then just have GzipOutputStream wap > that instead of an OstreamOutputStream. > > > > > > > > On Fri, May 20, 2011 at 3:29 AM, S

[protobuf] How to control the output size of GzipOutputStream?

2011-05-20 Thread Shin
I attempt to use compressed data for my socket programing. The problem is the fixed output buffer size. Message *request; char buf[512]; stringbuf sbuf; sbuf.pubsetbuf((char*)buf, sizeof(buf)); ostream os(&sbuf); OstreamOutputStream *oos = new OstreamOutputStream(&os); GzipOutputStream *gzout = ne

[protobuf] Re: undefined reference to GzipInputStream

2011-05-19 Thread Shin
bz.so, on MSVC you may need to modify the project files a bit. > > > > > > > > On Wed, May 18, 2011 at 12:18 AM, Shin wrote: > > I'm learning how to use the gzip stream. > > The error msg always bother me. > > It saying: > > >  undefined reference

[protobuf] undefined reference to GzipInputStream

2011-05-18 Thread Shin
I'm learning how to use the gzip stream. The error msg always bother me. It saying: undefined reference to `google::protobuf::io::GzipInputStream::GzipInputStream(google::protobuf::io::ZeroCopyInputStream*, google::protobuf::io::GzipInputStream::Format, int) It seems only found the header file b