Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Unified Diff: blimp/docs/running.md

Issue 1696563002: Blimp: add support for SSL connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rsleevi feedback #40 Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: blimp/docs/running.md
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
index f4a1d96e117e1eeea50d0a9736def7f9b9eea5a4..6fdf5bd7af51b82ddd30fef90df78505297371a8 100644
--- a/blimp/docs/running.md
+++ b/blimp/docs/running.md
@@ -21,10 +21,15 @@ Set up any command line flags with:
./build/android/adb_blimp_command_line --enable-webgl
```
-To have the client connect to a custom engine use the `--blimplet-endpoint`
-flag. This takes values in the form of scheme:ip:port. The possible valid
-schemes are 'tcp', 'quic', and 'ssl'. An example valid endpoint would be
-`--blimplet-endpoint=tcp:127.0.0.1:500`.
+To have the client connect to a custom engine use the `--engine-ip`,
+`--engine-port`, and `--engine-transport` flags. The possible valid
+values for `--engine-transport` are 'tcp', 'quic', and 'ssl'.
+An example valid endpoint would be
+`--engine-ip=127.0.0.1 --engine-port=1234 --engine-transport=tcp`.
+
+TLS-encrypted connections (QUIC, SSL) take an additional flag
+`--engine-cert-path` which specifies a path to a PEM-encoded certificate
+file (e.g. `--engine-cert-path=/path/to/file.pem`.)
Run the Blimp APK with:

Powered by Google App Engine
This is Rietveld 408576698