I'm looking at some of the functions in <ByteReadC...
# ktor
b
I'm looking at some of the functions in ByteReadChannelOperations such as copyTo for me to join the read channel from one socket and pipe it to the write channel on another socket to tunnel TCP traffic between the two. I'm a bit hesatent that most of the methods in that object are marked InternalAPI. Wanted to ask whether there are other options I should look at for this use case, or if not, why they are maked internal?
a
The mentioned method isn't marked as internal, but its implementation relies on internal APIs.
b
Ahh, thank you! I completely missed the OptIn aspect of the annotation 🙈