panel-plugin/net.{c,h}, panel-plugin/os.h:

- added code for DragonFly BSD, thanks to Bob Bagwill <bob@bagwill.com>
    (fixed #1456)


(Old svn revision: 2247)
master
Bernhard Walle 2006-12-17 19:44:57 +00:00
parent dbf646945d
commit 3ca61bba76
3 changed files with 196 additions and 172 deletions

View File

@ -46,7 +46,7 @@
#elif __APPLE__
# include "src/macos.h"
# include "src/macos.c"
#elif __FreeBSD__
#elif __FreeBSD__ || __DragonFly__
# include "wormulon/freebsd.h"
# include "wormulon/freebsd.c"
#elif __linux__

View File

@ -62,7 +62,7 @@ typedef struct
#ifdef __HPUX__
int wait_pcks_counter;
nmapi_logstat* if_ptr;
#elif __FreeBSD__
#elif __FreeBSD__ || __DragonFly__
int watchif;
int dev_opened;
#elif __NetBSD__

View File

@ -72,6 +72,30 @@
# include <net/if_media.h>
# include <net/if_mib.h>
# include <arpa/inet.h>
#elif __DragonFly__ /* D R A G O N F L Y */
# include <stdio.h>
# include <stdlib.h>
# include <stdarg.h>
# include <unistd.h>
# include <string.h>
# include <time.h>
# include <ctype.h>
# include <signal.h>
# include <sys/param.h>
# include <sys/sysctl.h>
# include <sys/wait.h>
# include <sys/stat.h>
# include <sys/ioctl.h>
# include <sys/types.h>
# include <sys/socket.h>
# include <sys/time.h>
# include <netinet/in.h>
# include <net/if.h>
# include <net/if_media.h>
# include <net/if_mib.h>
# include <arpa/inet.h>
# include <net/ppp_layer/ppp_defs.h>
# include <net/ppp/if_ppp.h>
#elif __FreeBSD__ /* F R E E B S D */
# include <stdio.h>
# include <stdlib.h>