@@ -587,7 +587,7 @@ const char *networkGetNameByPriority(NetPriority_t priority)
587
587
}
588
588
589
589
// ----------------------------------------
590
- // Determine if any network interface is online
590
+ // Determine if any network interface has access to the internet
591
591
// ----------------------------------------
592
592
bool networkHasInternet ()
593
593
{
@@ -604,7 +604,7 @@ void networkInterfaceEventStop(NetIndex_t index)
604
604
}
605
605
606
606
// ----------------------------------------
607
- // Determine if the network interface is online
607
+ // Determine the specified network interface access to the internet
608
608
// ----------------------------------------
609
609
bool networkInterfaceHasInternet (NetIndex_t index)
610
610
{
@@ -616,7 +616,7 @@ bool networkInterfaceHasInternet(NetIndex_t index)
616
616
}
617
617
618
618
// ----------------------------------------
619
- // Mark network offline
619
+ // Mark network interface as having NO access to the internet
620
620
// ----------------------------------------
621
621
void networkInterfaceEventInternetLost (NetIndex_t index)
622
622
{
@@ -685,7 +685,7 @@ void networkInterfaceEventInternetLost(NetIndex_t index)
685
685
}
686
686
687
687
// ----------------------------------------
688
- // Mark network online
688
+ // Mark network interface as having access to the internet
689
689
// ----------------------------------------
690
690
void networkInterfaceEventInternetAvailable (NetIndex_t index)
691
691
{
@@ -1124,7 +1124,6 @@ void networkSequenceStop(NetIndex_t index, bool debug)
1124
1124
// Start the sequence
1125
1125
networkSeqStopping |= bitMask;
1126
1126
networkStarted &= ~bitMask;
1127
-
1128
1127
networkSequence[index] = sequence;
1129
1128
}
1130
1129
}
@@ -1184,7 +1183,6 @@ void networkSequenceStopPolling(NetIndex_t index, bool debug, bool forcedStop)
1184
1183
if (forcedStop)
1185
1184
{
1186
1185
networkStarted &= ~bitMask;
1187
-
1188
1186
networkSeqRequest &= ~bitMask;
1189
1187
networkSeqNext &= ~bitMask;
1190
1188
}
0 commit comments