Skip to content

vpp-dev/turbotap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a5abb9f · Aug 10, 2016

History

5 Commits
Aug 10, 2016
Apr 12, 2016
Apr 29, 2016

Repository files navigation

			Turbotap

Conventional Tun driver in linux kernel provides file operations to send and
receive messages through tun/tap interfaces. But Turbotap provide socket based
interfaces on top of Tun driver. User application can simply send and receive
messages using socket based system calls sendmsg/recvmsg.

It also allows user applications to send and receive multiple messages using few
system calls by using sendmmsg/recvmmsg.

make:
	cd kmod_turbotap
	make
insert:
	sudo insert turbotap.ko
remove:
	sudo rmmod turbotap
clean:
	make clean