@@ -51,9 +51,9 @@ std::size_t ServerSession::processInputImpl(const std::uint8_t* buf, std::size_t
5151The [read()](https://commschamp.github.io/comms_doc/classcomms_1_1protocol_1_1ProtocolLayerBase.html)
5252member function of every protocol layer receives a variadic `extraValues` last parameter, which can be
5353used to add several output parameters to the function. In this example the
54- [comms::frame::msgId()](https://commschamp.github.io/comms_doc/namespacecomms_1_1protocol .html) is used
54+ [comms::frame::msgId()](https://commschamp.github.io/comms_doc/namespacecomms_1_1frame .html) is used
5555to add `msgId` local variable as an output parameter for the message numeric ID. Also the
56- [comms::frame::msgIndex()](https://commschamp.github.io/comms_doc/namespacecomms_1_1protocol .html)
56+ [comms::frame::msgIndex()](https://commschamp.github.io/comms_doc/namespacecomms_1_1frame .html)
5757is used to add `msgIdx` local variable as an output parameter for the index of the message (offset in
5858the tuple of the input messages starting from the first message sharing the same ID).
5959Later down the code both `msgId` and `msgIdx` values are used to dispatch message object into the
@@ -177,8 +177,8 @@ struct DataViewDefaultOptionsT : public TBase
177177- The [ COMMS Library] ( https://github.com/commschamp/comms ) provides multiple ways to access
178178 some or all of the framing fields.
179179- The ` read() ` member function can receive and update selected output parameters via
180- [ comms::frame::msgId()] ( https://commschamp.github.io/comms_doc/namespacecomms_1_1protocol .html ) ,
181- [ comms::frame::msgIndex()] ( https://commschamp.github.io/comms_doc/namespacecomms_1_1protocol .html ) , etc...
180+ [ comms::frame::msgId()] ( https://commschamp.github.io/comms_doc/namespacecomms_1_1frame .html ) ,
181+ [ comms::frame::msgIndex()] ( https://commschamp.github.io/comms_doc/namespacecomms_1_1frame .html ) , etc...
182182- In order to get ** all** the frame fields the
183183 [ readFieldsCached()] ( https://commschamp.github.io/comms_doc/classcomms_1_1protocol_1_1ProtocolLayerBase.html )
184184 member function needs to be used.
0 commit comments