Advertisement
Guest User

FTP Server

a guest
Dec 22nd, 2015
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.79 KB | None | 0 0
  1. rednet.open("left")
  2. function Request()
  3.   id, message = rednet.receive("PING")
  4.   print("waiting")
  5.   if message == "CONNECTION" then
  6.     textutils.slowPrint("connection established with "..id)
  7.     rednet.send(id, "RECIEVED","PING")
  8.     print("sending "..id.."message")
  9.     id, filepath = rednet.receive("FTP")
  10.     print(filepath)
  11.     if filepath ~= "CONNECTION" then
  12.       if fs.exists(filepath) then
  13.         print("found" ..filepath)
  14.         rednet.send(id,"FILE FOUND", "FTP")
  15.         id, message = rednet.receive("DOWNRQST")
  16.         if message == "DOWNLOADRQST" then
  17.           RQSTFILE = fs.open(filepath, "r")
  18.           SENDFILE = tostring(RQSTFILE.readAll())
  19.           rednet.send(id, SENDFILE, "Final")
  20.         end
  21.       end
  22.     end
  23.   end
  24. end
  25. while true do
  26.   Request()
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement