This commit is contained in:
NikolajDanger
2023-05-23 11:36:51 +02:00
parent cf4816052f
commit ea5f9ce2f3
2 changed files with 5 additions and 9 deletions

Binary file not shown.

View File

@ -116,12 +116,12 @@
\begin{tcolorbox}[colback=lightgray!30!white]
\begin{itemize}
\item The runner
\item Conductors
\item Recipes and handlers
\item The runner (brief)
\item Conductors (brief)
\item Recipes and handlers (brief)
\item File event monitor (Watchdog)
\item Events (important to clarify how file events work since I refer to it in the method section)
\item Testing
\item Testing (brief)
\end{itemize}
\end{tcolorbox}
@ -135,10 +135,6 @@
I make use of the following socket methods, which have the same names and functions in the \texttt{socket} library and the Berkeley sockets API:
\begin{tcolorbox}[colback=blue!30!white]
Too granular?
\end{tcolorbox}
\begin{itemize}
\setlength{\itemsep}{-5pt}
\item \texttt{bind()}: Associates the socket with a given local IP address and port. It also reserves the port locally.
@ -153,7 +149,7 @@
\begin{itemize}
\setlength{\itemsep}{-5pt}
\item \texttt{connect()}: Sends a TCP connection request to a listening socket.
\item \texttt{sendall()}: Sends data a socket.
\item \texttt{sendall()}: Sends data to a socket.
\end{itemize}
\section{Method}