handleQuit method

Future<void> handleQuit(
  1. FtpSession session
)

Implementation

Future<void> handleQuit(FtpSession session) async {
  session.sendResponse('221 Service closing control connection');
  await session.controlSocket.close();
}