mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-16 02:33:33 +00:00
start fleshing out documentation sections
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: UDP Client
|
||||
sidebar:
|
||||
order: 5
|
||||
---
|
||||
The UDP client module sends messages to a the configured `host` and `port`. This module does not receive any message and so using it as an `input` to a [route](/concepts/routes) would be pointless.
|
||||
|
||||
- **type**: `net.udp.client`
|
||||
- **params**:
|
||||
- **host**: IP or FQDN to send message to
|
||||
- **port**: UDP port to send messages to
|
||||
|
||||
### Example
|
||||
setup up a UDP client that will send UDP packets to `127.0.0.1` on port 8888
|
||||
```
|
||||
- id: udpClient
|
||||
type: net.udp.client
|
||||
params:
|
||||
host: 127.0.0.1
|
||||
port: 8888
|
||||
```
|
||||
Reference in New Issue
Block a user