Hello,
I would like to ask a question about correct way of canceling socket operations on Symbian. Basically, we have two options, as far as I understand:
- Call CActive::Cancel() on a ActiveObject that is used for asynchronous requests.
- Call RSocket::CancelRead() or RSocket::CancelSend() or RSocket::CancelAll()
Which way is correct? Or maybe I should call both methods - from CActive and from RSocket?
Thanks in advance.