|
@@ -72,13 +72,13 @@ public:
|
|
|
|
|
|
void incChokeUnchokeCount() {
|
|
void incChokeUnchokeCount() {
|
|
if(chokeUnchokeCount < INT_MAX) {
|
|
if(chokeUnchokeCount < INT_MAX) {
|
|
- chokeUnchokeCount++;
|
|
|
|
|
|
+ ++chokeUnchokeCount;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void incKeepAliveCount() {
|
|
void incKeepAliveCount() {
|
|
if(keepAliveCount < INT_MAX) {
|
|
if(keepAliveCount < INT_MAX) {
|
|
- keepAliveCount++;
|
|
|
|
|
|
+ ++keepAliveCount;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|