mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-06-25 09:33:36 +02:00
「🏗️」 wip: cgi workinggg
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/05/13 18:14:45 by adjoly #+# #+# */
|
||||
/* Updated: 2025/05/27 13:07:50 by adjoly ### ########.fr */
|
||||
/* Updated: 2025/05/27 18:57:27 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -17,19 +17,19 @@
|
||||
namespace webserv {
|
||||
namespace server {
|
||||
|
||||
class FileUpload : public AClientResource {
|
||||
public:
|
||||
FileUpload(int id) {
|
||||
_fd = id;
|
||||
_pfd_event = POLLOUT;
|
||||
}
|
||||
~FileUpload(void) {}
|
||||
|
||||
clientResType type(void) const { return UP_FILE; }
|
||||
|
||||
protected:
|
||||
private:
|
||||
};
|
||||
// class FileUpload : public AClientResource {
|
||||
// public:
|
||||
// FileUpload(int id) {
|
||||
// _fd = id;
|
||||
// _pfd_event = POLLOUT;
|
||||
// }
|
||||
// ~FileUpload(void) {}
|
||||
//
|
||||
// clientResType type(void) const { return UP_FILE; }
|
||||
//
|
||||
// protected:
|
||||
// private:
|
||||
// };
|
||||
|
||||
} // namespace server
|
||||
} // namespace webserv
|
||||
|
Reference in New Issue
Block a user