ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/pystatgrab/_statgrab.pyx
(Generate patch)

Comparing projects/pystatgrab/_statgrab.pyx (file contents):
Revision 1.15 by tdb, Tue Aug 24 20:43:47 2004 UTC vs.
Revision 1.16 by tdb, Sat Jul 30 10:49:42 2005 UTC

# Line 174 | Line 174 | cdef extern from "statgrab.h":
174      ctypedef struct sg_network_iface_stats:
175          char *interface_name
176          int speed
177 <        sg_iface_duplex dup
177 >        sg_iface_duplex duplex
178          int up
179  
180      cdef extern sg_network_iface_stats *sg_get_network_iface_stats(int *entries)
# Line 546 | Line 546 | def py_sg_get_network_iface_stats():
546          list.append(Result(
547              {'interface_name': s.interface_name,
548               'speed': s.speed,
549 <             'dup': s.dup,
549 >             'duplex': s.duplex,
550               'up' : s.up,
551              }
552          ))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines