Fix the format of offline_wire_formats.proto
END_PUBLIC.
-- error caused by copybara-presubmit =>
```
Migration resulted in error 'PERMANENT_ERROR'
Non reversible transformations:
diff --git a/origin/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto b/reverse/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto
index de0aed4..5d4bb08 100644
--- a/origin/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto
+++ b/reverse/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto
@@ -143,7 +143,9 @@ message PayloadTransferFrame {
// Accompanies DATA packets.
message PayloadChunk {
- enum Flags { LAST_CHUNK = 0x1; }
+ enum Flags {
+ LAST_CHUNK = 0x1;
+ }
optional int32 flags = 1;
optional int64 offset = 2;
optional bytes body = 3;
Workflow 'presubmit_piper_to_github' is not reversible
Configuration errorErrors happened during the migration
```
PiperOrigin-RevId: 430878757
Nearby C++ Library
The repository contains the Nearby project C++ library code. This is not an officially supported Google product.
About the Nearby Project
Nearby Connection
Nearby Connections is a high level protocol on top of Bluetooth/WiFi that acts as a medium-agnostic socket. Devices are able to advertise, scan, and connect with one another over any shared medium (eg. BT <-> BT). Once connected, the two devices share a list of all supported mediums and attempt to upgrade to the one with the highest bandwidth (eg. BT -> WiFi). The connection is encrypted, reliable, and fully duplex. BYTE, FILE, and STREAM payloads are all supported and will be chunked & transferred internally and recombined on the receiving device. See Nearby Connections Overview for more information.
Checkout the source tree
git clone https://github.com/google/nearby
cd nearby
git submodule update --init --recursive
Building Nearby, Unit Testing and Sample Apps
We support multiple platforms including Linux, iOS & Windows.
Building for Linux
Currently we support building from source using [bazel] (https://bazel.build). Other BUILD system such as cmake may be added later.
Prerequisites:
- Bazel
- clang with support for c++ 17+
- Openssl libcrypto.so (-lssl;-lcrypto).
To build the Nearby Connection Core library:
CC=clang CXX=clang++ bazel build -s --check_visibility=false //connections:core --spawn_strategy=standalone --verbose_failures
iOS
Currently we provide precompiled libraries. See the following page for instructions.
Last Updated: Feb 2022