| 234 | } |
| 235 | |
| 236 | bool ParsePbFromIOBuf(google::protobuf::Message* msg, const butil::IOBuf& buf) { |
| 237 | butil::IOBufAsZeroCopyInputStream stream(buf); |
| 238 | return ParsePbFromZeroCopyStreamInlined(msg, &stream); |
| 239 | } |
| 240 | |
| 241 | bool ParsePbFromArray(google::protobuf::Message* msg, |
| 242 | const void* data, size_t size) { |