diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-09-27 20:40:22 -0400 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-09-27 21:46:02 -0400 |
commit | 1e8b40f719ac43ea53e414e311d9387757630de6 (patch) | |
tree | e4c633cf954df4dd8158656e5b6d2e143f47cca9 /README.md | |
parent | d383e4cbc0bc89cd3bc3b69b0aa3ffc1862e9607 (diff) |
Standardize names for payload format.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -328,16 +328,16 @@ changed. { "command_response": "af_bypass", "status": true} -#### Message Format Control +#### Payload Format Control -The `message_format` command determines the format for output data from the VI -and also the expected format of commands sent to the VI. +The `payload_format` command determines the format for output data from the VI +and the expected format of commands sent to the VI. -Valid formats are `json` and `binary`. +Valid formats are `json` and `protobuf`. **Request** - { "command": "message_format", + { "command": "payload_format", "format": "json" } @@ -347,7 +347,7 @@ If the format was changed successfully, the `status` in the response will be `true`. The response will be in the original message format, and all subsequent messages will be in the new format. - { "command_response": "message_format", "status": true} + { "command_response": "payload_format", "status": true} ### Trace File Format |