diff options
author | Edoardo La Greca | 2025-08-07 19:13:22 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-07 19:13:22 +0200 |
commit | 0d34f06f3d02ebabb84b80b271ae3c3028e87dd9 (patch) | |
tree | ea01fc29f64c87175d89c3761f656228cd381c8b | |
parent | 3e1b04196196d8402387ed0dd4d25249f740fabb (diff) |
add clarification in ProtocolTranslator documentation
-rw-r--r-- | src/main/kotlin/ProtocolTranslator.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/ProtocolTranslator.kt b/src/main/kotlin/ProtocolTranslator.kt index 144eef6..eaa415f 100644 --- a/src/main/kotlin/ProtocolTranslator.kt +++ b/src/main/kotlin/ProtocolTranslator.kt @@ -9,7 +9,7 @@ TODO: * Every method that can fail, that is, every request that can receive a response with `Rerror` type instead of the same * type as itself, returns a non-null `String` that contains the error message received in the response. * - * Tags are supposed to be managed internally by the class that provides the implementation. + * Tags, FIDs, QIDs, and the `msize` value are supposed to be managed internally by the implementing class. * * When compared to 9P's formal message descriptions, like those which can be read in Plan 9's manual pages, some of the * methods might lack parameters. Those which can be inferred from the existing parameters are purposefully omitted. An |