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
parent
dbf646945d
commit
3ca61bba76
|
@ -46,7 +46,7 @@
|
||||||
#elif __APPLE__
|
#elif __APPLE__
|
||||||
# include "src/macos.h"
|
# include "src/macos.h"
|
||||||
# include "src/macos.c"
|
# include "src/macos.c"
|
||||||
#elif __FreeBSD__
|
#elif __FreeBSD__ || __DragonFly__
|
||||||
# include "wormulon/freebsd.h"
|
# include "wormulon/freebsd.h"
|
||||||
# include "wormulon/freebsd.c"
|
# include "wormulon/freebsd.c"
|
||||||
#elif __linux__
|
#elif __linux__
|
||||||
|
|
|
@ -62,7 +62,7 @@ typedef struct
|
||||||
#ifdef __HPUX__
|
#ifdef __HPUX__
|
||||||
int wait_pcks_counter;
|
int wait_pcks_counter;
|
||||||
nmapi_logstat* if_ptr;
|
nmapi_logstat* if_ptr;
|
||||||
#elif __FreeBSD__
|
#elif __FreeBSD__ || __DragonFly__
|
||||||
int watchif;
|
int watchif;
|
||||||
int dev_opened;
|
int dev_opened;
|
||||||
#elif __NetBSD__
|
#elif __NetBSD__
|
||||||
|
|
|
@ -72,6 +72,30 @@
|
||||||
# include <net/if_media.h>
|
# include <net/if_media.h>
|
||||||
# include <net/if_mib.h>
|
# include <net/if_mib.h>
|
||||||
# include <arpa/inet.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 */
|
#elif __FreeBSD__ /* F R E E B S D */
|
||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
|
|
Loading…
Reference in New Issue