├── .gitignore ├── Makefile ├── README.md ├── common.h ├── control.c ├── control.h ├── error.c ├── error.h ├── fdb.c ├── fdb.h ├── iftap.c ├── iftap.h ├── main.c ├── net.c ├── net.h ├── sockaddrmacro.h ├── vxlan ├── vxlan.c ├── vxlan.conf ├── vxlan.h └── vxlanctl.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/common.h -------------------------------------------------------------------------------- /control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/control.c -------------------------------------------------------------------------------- /control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/control.h -------------------------------------------------------------------------------- /error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/error.c -------------------------------------------------------------------------------- /error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/error.h -------------------------------------------------------------------------------- /fdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/fdb.c -------------------------------------------------------------------------------- /fdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/fdb.h -------------------------------------------------------------------------------- /iftap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/iftap.c -------------------------------------------------------------------------------- /iftap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/iftap.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/main.c -------------------------------------------------------------------------------- /net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/net.c -------------------------------------------------------------------------------- /net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/net.h -------------------------------------------------------------------------------- /sockaddrmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/sockaddrmacro.h -------------------------------------------------------------------------------- /vxlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/vxlan -------------------------------------------------------------------------------- /vxlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/vxlan.c -------------------------------------------------------------------------------- /vxlan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/vxlan.conf -------------------------------------------------------------------------------- /vxlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/vxlan.h -------------------------------------------------------------------------------- /vxlanctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upa/vxlan/HEAD/vxlanctl.c --------------------------------------------------------------------------------