roc-streaming / roc-toolkit

Real-time audio streaming over the network.
https://roc-streaming.org
Mozilla Public License 2.0
1.02k stars 203 forks source link

Return status code instead of bool in IParser & IComposer #737

Open gavv opened 1 week ago

gavv commented 1 week ago

Summary

packet::IParser and packet::IComposer are interfaces for protocol-specific (de)serializators. See documentation.

Currently their methods return bool, which is true on success or false on error. We need to replace bool with status::StatusCode and return code that described why the operation failed.

Implementation

Testing