00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010
00011
00012 @interface UdpStats : NSObject {
00013
00014 }
00015
00016 -(void) increaseUdpDroppedBy:(int) newValue;
00017 -(void) increasePacketsSendBy:(int) newValue;
00018 -(void) increaseUdpRecentDroppedBy:(int) newValue;
00019 -(void) increaseUdpTotalBy:(int) newValue;
00020 -(void) increaseRecentCountBy:(int) newValue;
00021 -(void) increaseRecentDroppedBy:(int) newValue;
00022 -(void) increaseSequenceBy:(int) newValue;
00023
00024 -(void) setUdpDropped:(int) newValue;
00025 -(void) setUdpRecentDropped:(int) newValue;
00026 -(void) setUdpTotal:(int) newValue;
00027 -(void) setRecentCount:(int) newValue;
00028 -(void) setRecentDropped:(int) newValue;
00029 -(void) setSequence:(int) newValue;
00030 -(void) setPacketsSent:(int) newValue;
00031 -(void) setPacketsReceived:(int) newValue;
00032
00033 -(int) udpDropped;
00034 -(int) udpRecentDropped;
00035 -(int) udpTotal;
00036 -(int) recentCount;
00037 -(int) recentDropped;
00038 -(int) sequence;
00039 -(int) packetsSent;
00040 -(int) packetsReceived;
00041
00042 @end