Comment #4 on issue 434 by xiaof...@google.com: With
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp, parent object deleted while
child still exists: causes segmentation fault
http://code.google.com/p/protobuf/issues/detail?id=434
You can just keep an eye on the discussion group. When the new ve
Protogen from protobuf-ner r614 generates code that does not compile. The
.proto file seems to be fine as protogen does not report any errors and
same .proto file is used to generate c++ code that compiles fine. Here is
part that causes the problem:
message CosDgp
{
enum Type
{
Offline = 1;
Onl
Comment #3 on issue 434 by jtolds: With
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp, parent object deleted while
child still exists: causes segmentation fault
http://code.google.com/p/protobuf/issues/detail?id=434
any chance we could have this ticket reopened and then closed when the new
v
Thanks for the info.
I did check those bits and they were set.
To complete this thread:
I did find my problem. In my code I allocated enough bytes in the send
buffer for two ints (marker and size), but I was sending them as Varint32's.
I changed it to send Uint32's and things are working now.
Status: New
Owner: liuj...@google.com
Labels: Type-Defect Priority-Medium
New issue 455 by howard.h...@gmail.com: google/protobuf/message.cc is
missing #include
http://code.google.com/p/protobuf/issues/detail?id=455
What steps will reproduce the problem?
Compile using clang and libc++:
cla
On Tuesday, January 22, 2013 1:05:25 AM UTC+8, anand ilkal wrote:
>
> Hi,
>
> I have a requirement where i need to read byte stream from socket
> (non-null terminated) and serialize the data before feeding to processing
> entity.
>
> how can i define non-null terminated byte stream in protobuf?
Hi,
I have a requirement where i need to read byte stream from socket (non-null
terminated) and serialize the data before feeding to processing entity.
how can i define non-null terminated byte stream in protobuf?
--
You received this message because you are subscribed to the Google Groups
"P
Thanks XIAO.
Finally i do:
ZeroCopyInputStream* input = new
google::protobuf::io::FileInputStream(filedescriptor);
google::protobuf::io::GzipInputStream gzip_stream(input,
GzipInputStream::GZIP);
Mail.ParseFromZeroCopyStream(&gzip_stream);
And this work perfectly. I paste the code for some
On Mon, Jan 21, 2013 at 7:53 PM, David Granados wrote:
> Hello.
>
> I compressed a proto object: Mail, in a file named : file.sav.
>
> Now i need get the proto object mail again, from the file.sav.
>
> I'm tying some like:
> google::protobuf::io::FileInputStream file_stream(filedescriptor);
>
I defined a proto P [proto2, java_api_version = 2].
I have a String that was created using the toString()method on an instance
of P.
I want to create a new instance of P from this String.
How?
[ProtocolTextParser is supposed to do that, but it does not seem to work on
proto2].
Jonat
I defined a proto P and created a String from an instance of this proto
using the toString() method.
Now I want to create a new instance of P from this string. How do I do
this?
The proto is proto2 and I'm using Java.
Jonathan
--
You received this message because you are subscribe
Hello.
I compressed a proto object: Mail, in a file named : file.sav.
Now i need get the proto object mail again, from the file.sav.
I'm tying some like:
google::protobuf::io::FileInputStream file_stream(filedescriptor);
google::protobuf::io::GzipInputStream gzip_stream(&file_stream,
GzipInp
Also, I have re-install using debian, now work.
Thanks.
El lunes, 21 de enero de 2013 10:36:49 UTC+1, Oliver escribió:
>
> On Fri, Jan 18, 2013 at 9:58 PM, David Granados
> >
> wrote:
>
> >GZipOutputStream gzip_stream(&file_stream,
> GzipOutputStream::Options());
>
> > main.cpp:11:4: err
Is there anything to do if protobuf is upgraded the version 2.3.0 to 2.4.1?
In other words is 2.4.1 full compatible with 2.3.0?
--
You received this message because you are subscribed to the Google Groups
"Protocol Buffers" group.
To view this discussion on the web visit
https://groups.google.
Is 2.4.1 full compatible with 2.3.0? Do I do anything if I upgrade?
--
You received this message because you are subscribed to the Google Groups
"Protocol Buffers" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/protobuf/-/3vxXuL3UYqgJ.
To post to this group, sen
On Fri, Jan 18, 2013 at 9:58 PM, David Granados wrote:
>GZipOutputStream gzip_stream(&file_stream, GzipOutputStream::Options());
> main.cpp:11:4: error: ‘GZipOutputStream’ no se declaró en este ámbito
You have the wrong capitalization (GZip vs Gzip)
Oliver
--
You received this message be
16 matches
Mail list logo