Explorar el Código

Add FreeBSD support for netspeeds, entropy and ip components

master
Michael Buch hace 5 años
committed by Aaron Marcher
padre
commit
86849d295b
Se han modificado 3 ficheros con 5 adiciones y 2 borrados
  1. +1
    -1
      components/entropy.c
  2. +3
    -0
      components/ip.c
  3. +1
    -1
      components/netspeeds.c

+ 1
- 1
components/entropy.c Ver fichero

@@ -17,7 +17,7 @@

return bprintf("%ju", num);
}
#elif defined(__OpenBSD__)
#elif defined(__OpenBSD__) | defined(__FreeBSD__)
const char *
entropy(void)
{


+ 3
- 0
components/ip.c Ver fichero

@@ -6,6 +6,9 @@
#if defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/socket.h>
#elif defined(__FreeBSD__)
#include <netinet/in.h>
#include <sys/socket.h>
#endif

#include "../util.h"


+ 1
- 1
components/netspeeds.c Ver fichero

@@ -58,7 +58,7 @@
return fmt_human((txbytes - oldtxbytes) * 1000 / interval,
1024);
}
#elif defined(__OpenBSD__)
#elif defined(__OpenBSD__) | defined(__FreeBSD__)
#include <string.h>
#include <ifaddrs.h>
#include <sys/types.h>


Cargando…
Cancelar
Guardar