git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #include <pcap.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <ctype.h> | |
| #include <stdio.h> | |
| #define MAXBYTES2CAPTURE 2048 | |
| /* processPacket(): Callback function called by pcap_loop() everytime a packet */ | |
| /* arrives to the network card. This function prints the captured raw data in */ |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| float calculate(unsigned long x) | |
| { | |
| float f; | |
| float delta = 0.000277778; | |
| unsigned long limit = 0x7FFFFFFF; | |
| if (x < limit) { |