You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working with this library and i was wondering if there was some kind of way of breaking from the loop when the quit command is recieved. For example:
While(True){
ftpSrv.handleFTP();
if(Quitcommandrecieved()){//This function does not exist, is there a way to still do this?
break;
}
}
The text was updated successfully, but these errors were encountered:
Hello,
I'm working with this library and i was wondering if there was some kind of way of breaking from the loop when the quit command is recieved. For example:
While(True){
ftpSrv.handleFTP();
if(Quitcommandrecieved()){//This function does not exist, is there a way to still do this?
break;
}
}
The text was updated successfully, but these errors were encountered: