You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if request1.bin contained a valid request for the `/iroh-bytes/2` protocol, response1.bin will
175
175
now contain the response.
176
+
177
+
## Custom Relay Configuration
178
+
179
+
By default, dumbpipe uses iroh's automatic relay selection, which picks the fastest responding relay server from the n0 network. You can customize this behavior using the `--relay` option:
180
+
181
+
### Disable relays entirely
182
+
183
+
If you want to force direct connections only:
184
+
185
+
```bash
186
+
dumbpipe listen --relay disabled
187
+
dumbpipe connect <ticket> --relay disabled
188
+
```
189
+
190
+
This will only attempt direct peer-to-peer connections and won't fall back to relay servers.
191
+
192
+
### Use default relays (default behavior)
193
+
194
+
```bash
195
+
dumbpipe listen --relay default
196
+
dumbpipe connect <ticket> --relay default
197
+
```
198
+
199
+
This is the default behavior when no `--relay` option is specified.
200
+
201
+
### Use a custom relay server
202
+
203
+
If you're running your own relay server or want to use a specific one:
0 commit comments