Remove redundant tables and code
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes;
|
||||
|
||||
/**
|
||||
* Class FileReceive
|
||||
* @package App\Classes
|
||||
*
|
||||
* This class represents a file being received.
|
||||
*/
|
||||
class FileReceive {
|
||||
public int $soff = 0;
|
||||
public int $toff = 0;
|
||||
public int $foff = 0;
|
||||
public int $ttot = 0;
|
||||
public int $stot = 0;
|
||||
public int $nf = 0;
|
||||
public int $allf = 0;
|
||||
public int $start = 0;
|
||||
}
|
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes;
|
||||
|
||||
/**
|
||||
* Class FileSend
|
||||
* @package App\Classes
|
||||
*
|
||||
* This class represents a file being sent.
|
||||
*/
|
||||
class FileSend {
|
||||
public int $soff = 0;
|
||||
public int $stot = 0;
|
||||
public int $toff = 0;
|
||||
public int $foff = 0;
|
||||
public int $ttot = 0;
|
||||
public int $nf = 0;
|
||||
public int $allf = 0;
|
||||
public int $cps = 1;
|
||||
public int $start = 0;
|
||||
}
|
@@ -5,7 +5,8 @@ namespace App\Classes\Protocol;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use League\Flysystem\UnreadableFileException;
|
||||
|
||||
use App\Classes\{FileReceive,Protocol,Protocol\Zmodem as ZmodemClass};
|
||||
use App\Classes\Protocol;
|
||||
use App\Classes\Protocol\Zmodem as ZmodemClass;
|
||||
use App\Classes\File\{Receive,Send};
|
||||
use App\Classes\Sock\{SocketClient,SocketException};
|
||||
use App\Interfaces\CRC as CRCInterface;
|
||||
|
Reference in New Issue
Block a user