Cleaned up uneeded imports and comments

This commit is contained in:
Tristan B. Velloza Kildaire 2022-11-28 18:42:19 +02:00
parent 2a8ab6f285
commit 87bfb3f1e6
1 changed files with 0 additions and 14 deletions

View File

@ -1,20 +1,6 @@
module libtun.adapter;
// extern (C) int ioctl(int fd, ulong request, void* data);
// extern (C) int open(char* path, int flags);
import core.stdc.stdio;
/**
* TUN maintenance routines in `tunctl.c`
* TODO: Use import C here
*/
import libtun.tunctl;
// extern (C) int createTun(char* interfaceName, int iffFlags);
// extern (C) int destroyTun(int fd);
// extern (C) int tunWrite(int fd, char* data, int length);
// extern (C) int tunRead(int fd, char* data, int amount);
public class Adapter
{