blob: de171bf7a52a15277427a83df1777a8d584b24ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
\documentclass[]{book}
\bibliographystyle{plain}
\usepackage{graphicx}
\usepackage{makeidx}
\usepackage{supertabular}
\usepackage{color}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{verbatim}
\usepackage{eurosym}
\usepackage{float}
\usepackage{fancyvrb}
\usepackage{framed}
\DeclareGraphicsExtensions{.png}
%\newcommand{\euro}[0]{euro}
\renewcommand{\textfraction}{0.00}
\renewcommand{\floatpagefraction}{0.8}
\renewcommand{\dblfloatpagefraction}{0.8}
\input{macros-epub}
\makeindex
\begin{document}
\frontmatter
\input{cover-epub}
\setcounter{tocdepth}{1}
\tableofcontents
\listoftables
\listoffigures
\input{cha-preface}
\mainmatter
\input{cha-library}
\input{cha-intro-tls}
\input{cha-auth}
\input{cha-cert-auth}
\input{cha-gtls-app}
\input{cha-tls-app}
\input{cha-programs}
\input{cha-internals}
\appendix
\input{cha-support}
\input{cha-ciphersuites}
\input{cha-errors}
\input{fdl}
\backmatter
\printindex
\addcontentsline{toc}{chapter}{Index}
\bibliography{gnutls}
\addcontentsline{toc}{chapter}{Bibliography}
\cleardoublepage
\end{document}
|