README changes
authorBertrone Matteo <m.bertrone@gmail.com>
Sat, 6 Feb 2016 16:12:45 +0000 (17:12 +0100)
committerBertrone Matteo <m.bertrone@gmail.com>
Sat, 6 Feb 2016 16:12:45 +0000 (17:12 +0100)
examples/networking/http_filter/README.md

index af36ca0..40f19e6 100644 (file)
@@ -3,7 +3,6 @@
 Write an eBPF application that parses HTTP packets and extracts (and prints on screen) the URL contained in the GET/POST request.
 
 [eBPF HTTP Filter - Short Presentation](https://github.com/iovisor/bpf-docs/blob/master/ebpf_http_filter.pdf)
-[Original Projct](https://github.com/netgroup-polito/ebpf-test)
 
 #Usage Example
 
@@ -30,7 +29,7 @@ Python script reads filtered raw packets from the socket, if necessary reassembl
 
 #v1 vs v2
 
-First version is the simple one: if the url is too long (splitted in more than one packet) is truncated. 
+First version is the simple one: if the url is too long (splitted in more than one packet) is truncated. <br />
 Second version is quite more complex: if necessary reassembles packets belonging to the same session and prints the complete url.
 
 #To run: