1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00
Files
nmap/libdnet-stripped/src/tun-none.c
2008-09-19 06:12:25 +00:00

59 lines
726 B
C

/*
* tun-none.c
*
* Copyright (c) 2001 Dug Song <dugsong@monkey.org>
*
* $Id: tun-none.c 548 2005-01-30 06:01:57Z dugsong $
*/
#include "config.h"
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "dnet.h"
tun_t *
tun_open(struct addr *src, struct addr *dst, int mtu)
{
errno = ENOSYS;
return (NULL);
}
const char *
tun_name(tun_t *tun)
{
errno = ENOSYS;
return (NULL);
}
int
tun_fileno(tun_t *tun)
{
errno = ENOSYS;
return (-1);
}
ssize_t
tun_send(tun_t *tun, const void *buf, size_t size)
{
errno = ENOSYS;
return (-1);
}
ssize_t
tun_recv(tun_t *tun, void *buf, size_t size)
{
errno = ENOSYS;
return (-1);
}
tun_t *
tun_close(tun_t *tun)
{
return (NULL);
}