ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/network_stats.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/network_stats.c (file contents):
Revision 1.13 by pajs, Mon Mar 31 13:24:12 2003 UTC vs.
Revision 1.14 by pajs, Sun Apr 6 00:27:19 2003 UTC

# Line 36 | Line 36
36   #include <regex.h>
37   #include "tools.h"
38   #endif
39 + #ifdef FREEBSD
40 + #include <sys/types.h>
41 + #include <sys/socket.h>
42 + #include <ifaddrs.h>
43 + #include <net/if.h>
44 + #endif
45  
46   static network_stat_t *network_stats=NULL;
47   static int interfaces=0;
# Line 94 | Line 100 | network_stat_t *get_network_stats(int *entries){
100          char line[8096];
101          regex_t regex;
102          regmatch_t line_match[4];
103 + #endif
104 + #ifdef FREEBSD
105 +        struct ifaddrs *net, *net_ptr;
106 +        struct if_data *net_data;
107 + #endif
108 +
109 + #ifdef FREEBSD
110 +        if(getifaddrs(&net) != 0){
111 +                return NULL;
112 +        }
113 +
114 +        interfaces=0;
115 +        
116 +        for(net_ptr=net;net_ptr!=NULL;net_ptr=net_ptr->ifa_next){
117 +                if(net_ptr->ifa_addr->sa_family != AF_LINK) continue;
118 +                network_stats=network_stat_malloc((interfaces+1), &sizeof_network_stats, network_stats);
119 +                if(network_stats==NULL){
120 +                        return NULL;
121 +                }
122 +                network_stat_ptr=network_stats+interfaces;
123 +                
124 +                if(network_stat_ptr->interface_name!=NULL) free(network_stat_ptr->interface_name);
125 +                network_stat_ptr->interface_name=strdup(net_ptr->ifa_name);
126 +                if(network_stat_ptr->interface_name==NULL) return NULL;
127 +                net_data=(struct if_data *)net_ptr->ifa_data;
128 +                network_stat_ptr->rx=net_data->ifi_ibytes;
129 +                network_stat_ptr->tx=net_data->ifi_obytes;                      
130 +                network_stat_ptr->systime=time(NULL);
131 +                interfaces++;
132 +        }
133 +        freeifaddrs(net);      
134   #endif
135  
136   #ifdef SOLARIS

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines