Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 335 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 335 Bytes

uring-sendfile

Just a simple implementation of sendfile using IO_URING. Hopefully it can help someone searching for hints on how to do this.

How to use

Starting server

make && ./server file.txt

Make a request

curl -o curled.txt http://localhost:6000

Verify

diff curled.txt file.txt