| 125 | |
| 126 | |
| 127 | bool streamingMediaType(ContentType contentType) |
| 128 | { |
| 129 | switch(contentType) { |
| 130 | case ContentType::PROTOBUF: |
| 131 | case ContentType::JSON: { |
| 132 | return false; |
| 133 | } |
| 134 | |
| 135 | case ContentType::RECORDIO: { |
| 136 | return true; |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | UNREACHABLE(); |
| 141 | } |
| 142 | |
| 143 | |
| 144 | string lowerSlaveToAgent(string s) |
no outgoing calls
no test coverage detected