IP parsing C accelerated, use bytes everywhere

This commit is contained in:
Geoffrey Frogeye 2019-12-09 08:55:34 +01:00
parent 7937496882
commit 55877be891
Signed by: geoffrey
GPG key ID: D8A7ECA00A8CD3DD
6 changed files with 73 additions and 21 deletions

5
Makefile Normal file
View file

@ -0,0 +1,5 @@
libaccel.so: accel.o
clang -shared -Wl,-soname,libaccel.so -o libaccel.so accel.o
accel.o: accel.c
clang -c -fPIC -O3 accel.c -o accel.o