Hi...
I am sending a large file over a network by using QNetworkAccessmanager's post method
Qt Code:
  1. QNetworkReply *reply = manager->post(request, postDataByteArray);
To copy to clipboard, switch view to plain text mode 
reply finished signal will be emitted once the entire post operation is complete. untle that networkaccessmanager keeps on sending the my large file.
But my question is can i interrupt that post operation in middle if i want. I could not find any proper apis in networkaccessmanager's documentation to achieve that.
Can some one suggest me how to solve this problem?