results and conclusion
[p2p-kernel-protocol.git] / doc / src / conclusions.tex
index d53f2d4..bc5e6d1 100644 (file)
@@ -1,3 +1,6 @@
 \section{Conclusions and Further Work}
 \label{sec:conclusions}
-Our conclusions based on the results gathered at Section \ref{sec:results}.
+
+In this paper we presented an kernel alternative for building peer to peer systems. We done this because when files are transferred in peer to peer system important time is lost when context switch is done because of system calls. With our basic implementation, we demonstrate the viability of file transfer implemented in kernel, mainly because the performances were acceptable when a small number of peers are transferring the same file, compared to \texttt{sendfile}, and good for a large number of peers who transfer the same file. 
+
+To make the protocol viable for real peer-to-peer systems important improvements are needed. First a mechanism for sending just some parts of a file will be needed. Also support for the TCP protocol must be implemented in order to make transfers safe and reliable.