is it possible to use raw sockets (on windows) to close a connection between 2 hosts? if yes then is this the best practice. i am not a cracker, i have a security assignment of 2 phases. phase 1- is t
Think about the following: Your ISP offers you a dynam开发者_Go百科ic ip-address (for example 123.123.123.123).
I\'m trying to test for a closed socket that has been gracefully closed by the peer without incurring the latency hit of a double send to induce a SIGPIPE.
Debugging my implementation I found a memory leak issue. I know where is the issue, I tried to solve it but sadly without success. I will try to explain you, maybe someone of you can help with this.
I\'ve read advice in many places to the effect that sending a lot of small packets will lead to network congestion.I\'ve even experienced this with a recent multi-threaded tcp app I wrote.However, I d
I am implementing some networking stuff in our project. It has been decided that the communication is very important and we want to do it synchronously. So the client sends something the server acknow
I know that read() is a blocking call unless I make the socket non-blocking. So I expect read() call which requests 4K of data should return a开发者_如何学运维 positive value ( no of bytes read) or -1
I\'m trying to understand the performance numbers I\'m getting and how to determine the optimal number of threads.
I want to transfer fil开发者_如何学JAVAes across the network using C or C++.What topics should I look up?How can I do this?You should start by choosing a protocol.HTTPS and SFTP are both good choices,
I have to do a sniffer as an assignment for the security course. I am using C and the pcap library. I got everything working well (since I got a code from the internet and changed it). But I have some