diff options
Diffstat (limited to 'icespider/fileSessions/fileSessions.cpp')
-rw-r--r-- | icespider/fileSessions/fileSessions.cpp | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/icespider/fileSessions/fileSessions.cpp b/icespider/fileSessions/fileSessions.cpp index afbb18d..6818410 100644 --- a/icespider/fileSessions/fileSessions.cpp +++ b/icespider/fileSessions/fileSessions.cpp @@ -1,18 +1,29 @@ -#include "Ice/Initialize.h" +#include <Ice/Communicator.h> +#include <Ice/Config.h> +#include <Ice/Current.h> #include <Ice/InputStream.h> #include <Ice/OutputStream.h> -#include <boost/uuid/uuid_generators.hpp> +#include <Ice/Properties.h> +#include <Ice/PropertiesF.h> +#include <boost/lexical_cast.hpp> +#include <boost/uuid/random_generator.hpp> #include <boost/uuid/uuid_io.hpp> +#include <cerrno> #include <core.h> +#include <cstring> +#include <ctime> +#include <exception> #include <factory.impl.h> -#include <fcntl.h> #include <fileUtils.h> -#include <filesystem> +#include <ios> +#include <memory> #include <session.h> +#include <string> +#include <string_view> #include <sys.h> #include <sys/file.h> -#include <sys/mman.h> -#include <sys/stat.h> +#include <unistd.h> +#include <utility> namespace IceSpider { class FileSessions : public Plugin, public SessionManager { |