Search Results

0
votes

How to create a file with a given size in Linux?

The trouble with the approaches using dd and perl is that they actually have to write every byte of the file. Using an approach like this you wouldn't have to. #include <stdio.h …
6
votes

Simulating “faster time” in linux

One approach that works best for unit testing is to abstract the way the current time is accessed in your code. Instead of calling System.currentTimeMillis() directly you can provide your o …
0
votes

TCP handshake with SOCK_RAW socket

Depending on what you're trying to do it may be easier to get existing software to handle the TCP handshaking for you. One open source IP stack is lwIP ( …