doc: added initial doc files
[p2p-kernel-protocol.git] / doc / paper.tex
1 \documentclass{article}[12pt]
2 \usepackage{listings}
3 \usepackage[utf8]{inputenc}
4
5
6 % paper info
7 \title{Peer-to-Peer Kernel Protocol (P2PKP)}
8 \author{Răzvan Crainea \\
9 razvan.crainea@cti.pub.ro \\
10 University `Politehnica' \\
11 Bucharest
12 \and
13 Tudor Cazangiu \\
14 tudor.cazangiu@cti.pub.ro \\
15 University `Politehnica' \\
16 Bucharest
17 }
18
19 % date specification (use \date{} to disable or \date{\today} otherwise)
20 \date{}
21
22 % remove page number
23 %\pagestyle{empty}
24
25
26 % begins the document
27 \begin{document}
28
29 % title
30 \maketitle
31
32 % abstract
33 \begin{abstract}
34 This is the abstract of the paper.
35 \end{abstract}
36
37
38 % rest of the content
39 \section{Introduction}
40 \label{sec:intro}
41 Paper introduction.
42
43 \section{Related Work}
44 \label{sec:related}
45 Perhaps here we can talk a bit about the Swift protocol, or other
46 implementations of application layer protocols that are implemented in kernel
47 \cite{tux}.
48
49 \section{Design}
50 \label{sec:design}
51
52 %\subsection{User Space}
53 %\label{subsec:userspace}
54 How this implementation is seen in the userspace.
55
56 %\subsection{Kernel Space}
57 %\label{subsec:kernelspace}
58 \section{Implementation}
59 \label{sec:implementation}
60 How this protocol is implemented in kernel space - perhaps split it in
61 multiple subsections - sending/receiving.
62
63 \section{Testing Scenarios}
64 \label{subsec:testing}
65 List the three scenarios we are going to test.
66
67
68 \section{Results}
69 \label{sec:results}
70 The results of the tests performed.
71
72
73 \section{Conclusions}
74 \label{sec:conclusions}
75 Our conclusions based on the results gathered at Section \ref{sec:results}.
76
77 \section{Further Work}
78 \label{sec:future}
79 Probably merge this with Section \ref{sec:conclusions}.
80
81
82 \section*{Acknowledgements}
83 Here will be the acknowledgments.
84
85 % bibliography
86 \bibliographystyle{plain}
87 \bibliography{paper}
88
89
90 \end{document}