Index: head/net/cnd/Makefile =================================================================== --- head/net/cnd/Makefile (revision 369826) +++ head/net/cnd/Makefile (revision 369827) @@ -1,17 +1,18 @@ # Created by: Daniel Bryan # $FreeBSD$ PORTNAME= cnd PORTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.bsd-geek.de/FreeBSD/distfiles/ MAINTAINER= lme@FreeBSD.org COMMENT= Console network display PLIST_FILES= bin/cnd do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include Index: head/net/cnd/files/patch-Makefile =================================================================== --- head/net/cnd/files/patch-Makefile (revision 369826) +++ head/net/cnd/files/patch-Makefile (revision 369827) @@ -1,8 +1,15 @@ ---- ./Makefile.orig 2011-06-21 13:15:49.000000000 +0200 -+++ ./Makefile 2011-06-21 13:16:07.000000000 +0200 -@@ -1,4 +1,4 @@ +--- Makefile.orig 2005-03-03 08:59:05.000000000 +0300 ++++ Makefile 2014-10-02 18:10:01.000000000 +0400 +@@ -1,10 +1,10 @@ -CC = cc +CC ?= cc CFLAGS += -Wall PREFIX ?= /usr/local OBJS = main.o + + all: $(OBJS) +- $(CC) $(CFLAGS) -o cnd $(OBJS) -lcurses -lkvm ++ $(CC) $(CFLAGS) -o cnd $(OBJS) -lcurses + .c.o: + $(CC) $(CFLAGS) -c -I/usr/include/ -o $@ $< + .SUFFIXS: .c .o Index: head/net/cnd/files/patch-main.c =================================================================== --- head/net/cnd/files/patch-main.c (nonexistent) +++ head/net/cnd/files/patch-main.c (revision 369827) @@ -0,0 +1,248 @@ +--- main.c.orig 2014-10-02 17:44:25.000000000 +0400 ++++ main.c 2014-10-02 18:08:23.000000000 +0400 +@@ -41,14 +41,13 @@ + #include + #include + #include ++#include + + #include + #include +-#include + #include + + #include +-#include + + #include + +@@ -59,21 +58,10 @@ + #define DISP_BYTE 1 + int disp_format = DISP_BYTE; + +-struct nlist netl[] = { {"_ifnet"}, {""} }; +-kvm_t *kvmd; +-char *nlistf = NULL; +-char *memf = NULL; +-#if __FreeBSD_version >= 501113 +-char name[IFNAMSIZ]; +-#else +-char name[32]; +-char tname[16]; +-#endif +-unsigned long ifnetaddr = 0; +- + unsigned long long in_total = 0; + unsigned long long out_total = 0; + char *in_dev = NULL; ++char name[IFNAMSIZ]; + + int winw,winh; + WINDOW *mainw; +@@ -173,7 +161,6 @@ + getmaxyx(stdscr,winh,winw); + if(winh < 20 || winw < 20) { + endwin(); +- kvm_close(kvmd); + fprintf(stderr,"Screen size is too small, sorry\n"); + exit(1); + } +@@ -241,35 +228,37 @@ + return; + } + +-/* read kernel memory, based off of netstat */ +-int kread(u_long addr,char *buf,int size) { +- if(kvmd != NULL) { +- if(kvm_nlist(kvmd,netl) < 0) { +- if(nlistf) +- fprintf(stderr,"error, kvm_nlist(%s): %s\n",nlistf,kvm_geterr(kvmd)); +- else +- fprintf(stderr,"error, kvm_nlist: %s\n",kvm_geterr(kvmd)); +- exit(1); +- } +- +- if(netl[0].n_type == 0) { +- if(nlistf) +- fprintf(stderr,"error, no namelist: %s\n",nlistf); +- else +- fprintf(stderr,"error, no namelist\n"); +- exit(1); +- } +- } else { +- fprintf(stderr,"error, kvm not available\n"); ++void readstat(u_long *ibytes, u_long *obytes) ++{ ++ struct ifaddrs *ifap, *ifa; ++ ++ if (getifaddrs(&ifap) != 0) { ++ fprintf(stderr,"getifaddrs()\n"); + exit(1); + } +- if(!buf) +- return 0; +- if(kvm_read(kvmd,addr,buf,size) != size) { +- fprintf(stderr,"error, %s\n",kvm_geterr(kvmd)); ++ ++ for (ifa = ifap; ifa; ifa = ifa->ifa_next) { ++ if (ifa->ifa_addr->sa_family != AF_LINK) ++ continue; ++ if (in_dev != NULL) { ++ if (strcmp(ifa->ifa_name, in_dev) == 0) ++ break; ++ } else ++ break; ++ } ++ if (ifa == NULL) { ++ fprintf(stderr,"error, interface not found\n"); + exit(1); + } +- return 0; ++ ++ strncpy(name, ifa->ifa_name, IFNAMSIZ); ++ ++#define IFA_STAT(s) (((struct if_data *)ifa->ifa_data)->ifi_ ## s) ++ *ibytes = IFA_STAT(ibytes); ++ *obytes = IFA_STAT(obytes); ++#undef IFA_STAT ++ ++ freeifaddrs(ifap); + } + + int main(int argc, char *argv[]) { +@@ -280,9 +269,6 @@ + unsigned long curo = 0; + #define CURIS curi / timea.tv_sec + #define CUROS curo / timea.tv_sec +- /* all goods are defined in net/if.h and net/if_var.h */ +- struct ifnet foonet; +- struct ifnethead ifnethead; + int i = 0; + int x = 0; + int j = 0; +@@ -393,48 +379,10 @@ + argc -= optind; + argv += optind; + +- for(i=0;i= 501113 +- strncpy(name,foonet.if_xname,sizeof(name)); +-#else +- if(kread((u_long)foonet.if_name, tname, 16)) +- return 1; +- snprintf(name,32,"%s%d",tname,foonet.if_unit); +-#endif +- +- while(in_dev != NULL && strncmp(in_dev,name,strlen(in_dev)) != 0) { +- ifnetaddr = (u_long)TAILQ_NEXT(&foonet,if_link); +- if(ifnetaddr < 1) { +- fprintf(stderr,"error, interface not found\n"); +- exit(1); +- } +- if(kread(ifnetaddr,(char *)&foonet,sizeof foonet)) +- return 1; +- +-#if __FreeBSD_version >= 501113 +- strncpy(name,foonet.if_xname,sizeof(name)); +-#else +- if(kread((u_long)foonet.if_name, tname, 16)) +- return 1; +- snprintf(name,32,"%s%d",tname,foonet.if_unit); +-#endif +- +- } ++ ++ readstat(&lasti, &lasto); ++ gettimeofday(&last,NULL); + + /* start curses */ + initscr(); +@@ -486,37 +434,32 @@ + } + /* screen init.. */ + screen_init(); +- +- lasti = foonet.if_ibytes; +- lasto = foonet.if_obytes; +- gettimeofday(&last,NULL); +- ++ + for(i=0;i