Clear History

This commit is contained in:
2023-05-11 17:44:13 +02:00
commit 4acb9b9ae8
77 changed files with 5363 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
\usepackage{acro}
\acsetup{
make-links
}
\DeclareAcronym{dtn}{
short = DTN,
long = Delay/Disruption-Tolerant Networking \cite{RFC5050,RFC9171} ,
}
\DeclareAcronym{tcp}{
short = TCP ,
long = Transmission Control Protocol \cite{RFC0793,RFC7323} ,
}
\DeclareAcronym{udp}{
short = UDP ,
long = User Datagram Protocol \cite{RFC0768},
}
\DeclareAcronym{ltp}{
short = LTP ,
long = Licklider Transmission Protocol \cite{RFC5326} ,
}
\DeclareAcronym{lldp}{
short = LLDP ,
long = Link Layer Discovery Protocol \cite{7433915} ,
}
\DeclareAcronym{ns3}{
short = ns-3 ,
long = ns-3 Network Simulator \footnote{\url{https://www.nsnam.org/}} ,
}
\DeclareAcronym{omnet}{
short = OMNeT++ ,
long = Open Modeling Network Simulator \footnote{\url{http://omnetpp.org/}} ,
}
\DeclareAcronym{inet}{
short = INET ,
long = INET \footnote{\url{https://inet.omnetpp.org/}} ,
}
\DeclareAcronym{bp}{
short = BP ,
long = Bundle Protocol \cite{RFC5050,RFC9171} ,
}
\DeclareAcronym{ops}{
short = OPS ,
long = Opportunistic Protocol Simulator ,
}
\DeclareAcronym{cgr}{
short = CGR ,
long = Contact Graph Routing \cite{burleigh2011contact} ,
}
\DeclareAcronym{dns}{
short = DNS,
long = Domain Name System \cite{RFC1034,RFC1035} ,
}
\DeclareAcronym{ip}{
short = IP,
long = Internet Protocol \cite{RFC0791} ,
}
\DeclareAcronym{cni}{
short = CNI,
long = Container Network Interface \footnote{\url{https://www.cni.dev/}} ,
}
\DeclareAcronym{oci}{
short = OCI,
long = Open Container Initiative \footnote{\url{https://opencontainers.org/}} ,
}

View File

@@ -0,0 +1,22 @@
\faculty{Faculty of Computer Science}
\institute{Institute of Systems Architecture}
\chair{Chair of Computer Networks}
\date{\today}
\title{A Simulator for Delay- and Disruption-tolerant Networking based on Kubernetes}
\thesis{master}
\graduation[M.Sc.]{Master of Science}
\author{
Niccolo Borgioli
\matriculationnumber{XXX}%
\matriculationyear{XXX}
\dateofbirth{XXX}%
\placeofbirth{XXX}%
}
\supervisor{Dr. -Ing. Marius Feldmann}
\professor{Prof. Dr. rer. nat. habil. Dr. h. c. Alexander Schill}
\maketitle

View File

@@ -0,0 +1,20 @@
% Copied from: https://ghost.tweakblogs.net/blog/720/requirement-list-in-latex.html
\newcommand{\reqitem}[1]{
$R_{#1}$
}
\newcommand{\reqinit}{
\newcounter{reqcountbackup}
\newcounter{reqcount}
\renewcommand{\thereqcount}{\reqitem{\arabic{reqcount}}}
}
\newcommand{\reqlist}[1]{
\begin{list}{\thereqcount}{\usecounter{reqcount}}
\setcounter{reqcount}{\value{reqcountbackup}}
#1
\setcounter{reqcountbackup}{\value{reqcount}}
\end{list}
}