Modifiche per le tabelle per Mirko.
authorSimone Piccardi <piccardi@gnulinux.it>
Mon, 23 Jun 2003 18:48:04 +0000 (18:48 +0000)
committerSimone Piccardi <piccardi@gnulinux.it>
Mon, 23 Jun 2003 18:48:04 +0000 (18:48 +0000)
macro.tex
netlayer.tex
sources/TCP_echo.c

index 44326182217d2a0ba0f461cdad612241811293b8..41a118e4468ba07e33e6b4a893ff5f262d9af817 100644 (file)
--- a/macro.tex
+++ b/macro.tex
 \newcommand{\acr}[1]{\textsl{#1}}     % acrostic (for pid, suid, etc.)
 
 
+% Aggiunte di Mirko per la gestione delle tabelle complicate come immagini
+% nella traslazione in HTML
+\newenvironment{usepicture}{}{}{}{}
+
 %%% Local Variables: 
 %%% mode: latex
 %%% TeX-master: "gapil"
index fb4acf2582f121b4c86d1135571750e452d72ccb..fa73950c608b76724570a09337921a3dd231f645 100644 (file)
@@ -78,6 +78,7 @@ diverse.
 \begin{table}[htb]
   \centering
   \footnotesize
+  \begin{usepicture} 
   \begin{tabular} {c@{\hspace{1mm}\vrule}
       p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}
       p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}
@@ -140,7 +141,8 @@ diverse.
     \omit\hfill\vrule &&&&&&&& &&&&&&&& &&&&&&&& &&&&&&&& \\
     \cline{2-33}
 
-\end{tabular}
+  \end{tabular}
+  \end{usepicture} 
 \caption{Le classi di indirizzi secondo IPv4.}
 \label{tab:IP_ipv4class}
 \end{table}
@@ -163,6 +165,7 @@ di questi ultimi ed inefficienza nel trasporto.
 \begin{table}[htb]
   \centering
   \footnotesize
+  \begin{usepicture} 
   \begin{tabular} {c@{\hspace{1mm}\vrule}
       p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}
       p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}p{3mm}@{\vrule}
@@ -181,7 +184,8 @@ di questi ultimi ed inefficienza nel trasporto.
     \multicolumn{20}{@{}c@{\vrule}}{\parbox[c]{60mm}{\centering host Id}} \\
     \omit\hfill\vrule &&&&&&&& &&&&&&&& &&&&&&&& &&&&&&&& \\
     \cline{2-33}
-\end{tabular}
+  \end{tabular}
+  \end{usepicture} 
 \caption{Uno esempio di indirizzamento CIDR.}
 \label{tab:IP_ipv4cidr}
 \end{table}
index be6842babd90358dffab5bbd4526dabe07ee65bf..2a6f921dd54a2543b75bc09b01e2f5ac30532632 100644 (file)
@@ -26,7 +26,7 @@
  *
  * Usage: echo -h give all info's
  *
- * $Id: TCP_echo.c,v 1.1 2003/06/23 13:58:36 piccardi Exp $
+ * $Id: TCP_echo.c,v 1.2 2003/06/23 18:48:04 piccardi Exp $
  *
  ****************************************************************/
 /* 
@@ -106,6 +106,7 @@ int main(int argc, char *argv[])
     }
     /* check if resetting on close is required */
     if (reset) {
+       printf("Setting reset on close \n");
        ling.l_onoff = 1;
        ling.l_linger = 0;      
        if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {