/* * veth.h: Interface to tools for managing veth pairs * * Copyright IBM Corp. 2008 * * See COPYING.LIB for the License of this software * * Authors: * David L. Leskovec */ #ifndef VETH_H #define VETH_H #include /* Function declarations */ int vethCreate(char* veth1, int veth1MaxLen, char* veth2, int veth2MaxLen); int vethDelete(const char* veth); int vethInterfaceUpOrDown(const char* veth, int upOrDown); int moveInterfaceToNetNs(const char *interface, int pidInNs); #endif /* VETH_H */