Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c86a33f
Create OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
0b6f38b
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
c006476
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
0f57a8d
Create OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
a4de12f
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
6a85a28
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
ae493a1
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
ee4de7f
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
ca81f29
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
bc58281
Bug testing
leothehero Feb 7, 2022
095cbad
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
54594ab
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
f44eaa5
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
3259712
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
545a264
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
4a6796f
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
0fb5f87
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
0867101
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
97871c2
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
0bc3ded
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
98cf410
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
923f64e
Added list, mkdir and delete
leothehero Feb 7, 2022
9ea8961
Update OpenFTP Client Program LITE.lua
leothehero Feb 7, 2022
b4231ad
Update OpenFTP Server Program LITE.lua
leothehero Feb 7, 2022
a82e2a4
Reordering files + readme
leothehero Feb 7, 2022
f3c41e5
Rename + readme
leothehero Feb 7, 2022
760fb56
Update README.md
leothehero Feb 7, 2022
e0959b4
Update OpenFTPLITE-Server.lua
leothehero Feb 8, 2022
75e25e7
Merge remote-tracking branch 'upstream/master' into OpenFTP-Beta-3-LITE
leothehero Feb 8, 2022
7693797
Update OpenFTPLITE-Client.lua
leothehero Feb 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ io.write("Successfully Established Socket.\nSelect your mode:\nSEND RECEIVE DELE
local loop = true
while loop do
local response = io.read()
response = response:upper()
if response == "SEND" then
io.write("Enter destination of file on server: /home/OpenFTP/")
FileDetails.destination = io.read()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,11 @@ local function GERTDataHandler(_,originAddress,connectionID,data)
fileSockets[originAddress]:read()
local FileDetails = SRL.unserialize(information[2])
FileDetails.address = originAddress
FileDetails.destination = customPath .. fs.canonical(FileDetails.destination)
local FileData = SRL.unserialize(information[3])
local result, lastState = FTPCore.DownloadFile(FileDetails,FileData,fileSockets[originAddress])
local directory = fs.path(FileDetails.destination)
updateListFile(directory)
elseif information[1] == "FTPDELETE" then
local directory = customPath .. fs.canonical(information[2])
fileSockets[originAddress]:read()
Expand Down