research2: architecture - send/recv datagram
[swifty.git] / doc / research2 / my-report.tex
1 % vim: set tw=78 sts=2 sw=2 ts=8 aw et ai:
2 \documentclass[12pt]{article}
3
4 \usepackage[paper=a4paper, top=2cm, bottom=3cm, left=2.5cm, right=2.5cm]{geometry}
5
6 \usepackage{ucs}
7 \usepackage[utf8x]{inputenc}
8 \usepackage[english]{babel}
9 \usepackage{hyperref}     % use \url{http://$URL} or \href{http://$URL}{Name}
10 \usepackage{underscore}   % underscores need not be escaped
11 \usepackage{subfigure}
12 \usepackage{verbatim}
13 \usepackage{float}
14 \usepackage{booktabs}
15
16 % Support for including graphics
17 \usepackage{graphicx}
18 \DeclareGraphicsExtensions{.pdf,.png,.jpg}
19
20 \usepackage{hyperref}
21
22 \hypersetup{%
23         colorlinks=true,
24         linkcolor=blue,
25         anchorcolor=black,
26         citecolor=black,
27         urlcolor=blue,
28         bookmarks=true,
29         bookmarksnumbered=true
30 }
31 \urlstyle{same}
32
33 \newcommand{\labelindexref}[2]{\hyperref[#2]{#1~\ref*{#2}}}
34 % command for inserting labeled figures
35 \newcommand{\image}[4][]{
36 \begin{figure}[htb]
37 \begin{center}
38 \includegraphics[#1]{#2}
39 \caption{#4 \label{#3}}
40 \end{center}
41 \end{figure}
42 }
43
44 \setlength{\parindent}{0pt}
45 \setlength{\parskip}{2ex}
46
47
48 \title{\bfseries{SWIFT in the Linux Kernel\\
49 \large{\vspace*{0.4cm}Scientific supervisor: Nicolae Țăpuș\\ Technical supervisor: Răzvan Deaconescu}}}
50
51 \author{Oana Baron, Bogdan Druțu\\
52 Automatic Control and Computers Faculty\\
53 University Politehnica of Bucharest\\
54 Splaiul Independenței nr. 313, Bucharest, Romania \\
55 \emph{\{oana.baron, bogdan.drutu\}@cti.pub.ro}}
56
57 \date{\today}
58
59 \begin{document}
60
61 \maketitle
62
63 %\begin{abstract}
64 %\input{src/abstract}
65 %\end{abstract}
66
67 {\bf \hspace*{0.8cm} \textbf{\emph{Keywords}}  --  bittorrent, multiparty, transport protocol, linux kernel,\\
68 \hspace*{0.8cm} Merkle hash trees, binmaps}
69
70 \section{Introduction}
71 \label{sec:introduction}
72 \input{src/intro}
73
74 \section{Preliminary Work}
75 \label{sec:preliminarywork}
76 \input{src/preliminarywork}
77
78 %\pagebreak
79
80 \section{Architecture}
81 \label{sec:arch}
82 \input{src/arch}
83
84 \section{Raw Sockets}
85 \label{sec:rawsock}
86 \input{src/rawsock}
87
88 \section{Testing and Evaluation}
89 \label{sec:testing}
90 \input{src/testing}
91
92
93 \section{Conclusion and Further Work}
94 \label{sec:summary}
95 \input{src/summary}
96
97 %\section*{Acknowledgment}
98 %\label{sec:acknowledgment}
99
100 %The authors would like to thank XYZ for their support and dedication.
101
102 \pagebreak
103
104 \bibliographystyle{abbrv}
105 \bibliography{my-report}
106
107 \end{document}