-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a web server #114
Add a web server #114
Conversation
The last couple of commits are kind of like reinventing FTP over HTTP but at the moment our FUSE driver is read only and this is quite simple to write to live update the file system:
|
The server has a few major limitations that will need to be addressed later:
Concurrency will be implemented when threads are available, and the second one might be handled at the network driver level. The file transfer protocol is therefor limited to files below the MTU size, and while we can read, write, and delete files, we can only read and write directories, it's not currently possible to delete them. This part of the code should probably be moved to a proper FTP or TFTP server. Finally we should support the concept of |
No description provided.