-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.txt~
746 lines (622 loc) · 31 KB
/
text.txt~
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
cd src && make clean depend build
make[1]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/src'
rm -rf libstorage.a server client encrypt_passwd *.o tags depend.mk
cc -g -Wall -M server.c storage.c utils.c client.c encrypt_passwd.c > depend.mk
cc -g -Wall -c storage.c -o storage.o
cc -g -Wall -c utils.c -o utils.o
ar rcs libstorage.a storage.o utils.o
cc -g -Wall -c server.c -o server.o
limit stacksize 128m; cc -g -Wall -lcrypt -lm server.o utils.o -o server
cc -g -Wall -c client.c -o client.o
cc -g -Wall -lcrypt -lm client.o libstorage.a -o client
cc -g -Wall -c encrypt_passwd.c -o encrypt_passwd.o
cc -g -Wall -lcrypt -lm encrypt_passwd.o utils.o -o encrypt_passwd
make[1]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/src'
cd doc && make clean build
make[1]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/doc'
rm -rf doxygen
doxygen doxygen.conf
Searching for include files...
Searching for example files...
Searching for images...
Searching for dot files...
Searching for msc files...
Searching for files to exclude
Searching for files to process...
Searching for files in directory /nfs/ug/homes-0/s/steve148/ece297/storage/src
Searching for files in directory /nfs/ug/homes-0/s/steve148/ece297/storage/src/data
Reading and parsing tag files
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/client.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/client.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/encrypt_passwd.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/encrypt_passwd.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/newclient.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/newclient.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/server.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/server.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/storage.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/storage.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/storage.h...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/storage.h...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/utils.c...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/utils.c...
Preprocessing /nfs/ug/homes-0/s/steve148/ece297/storage/src/utils.h...
Parsing file /nfs/ug/homes-0/s/steve148/ece297/storage/src/utils.h...
Building group list...
Building directory list...
Building namespace list...
Building file list...
Building class list...
Associating documentation with classes...
Computing nesting relations for classes...
Building example list...
Searching for enumerations...
Searching for documented typedefs...
Searching for members imported via using declarations...
Searching for included using directives...
Searching for documented variables...
Building member list...
Searching for friends...
Searching for documented defines...
Computing class inheritance relations...
Computing class usage relations...
Flushing cached template relations that have become invalid...
Creating members for template instances...
Computing class relations...
Add enum values to enums...
Searching for member function documentation...
Building page list...
Search for main page...
Computing page relations...
Determining the scope of groups...
Sorting lists...
Freeing entry tree
Determining which enums are documented
Computing member relations...
Building full member lists recursively...
Adding members to member groups.
Computing member references...
Inheriting documentation...
Generating disk names...
Adding source references...
Adding xrefitems...
Sorting member lists...
Computing dependencies between directories...
Generating citations page...
Counting data structures...
Resolving user defined references...
Finding anchors and sections in the documentation...
Combining using relations...
Adding members to index pages...
Generating style sheet...
Generating example documentation...
Generating file sources...
Generating code for file client.c...
Generating code for file encrypt_passwd.c...
Generating code for file newclient.c...
Generating code for file server.c...
Generating code for file storage.c...
Generating code for file storage.h...
Generating code for file utils.c...
Generating code for file utils.h...
Generating file documentation...
Generating docs for file encrypt_passwd.c...
Generating docs for file server.c...
Generating docs for file storage.c...
Generating docs for file storage.h...
Generating docs for file utils.c...
Generating docs for file utils.h...
Generating page documentation...
Generating group documentation...
Generating class documentation...
Generating docs for compound config_params...
Generating docs for compound storage_record...
Generating namespace index...
Generating graph info page...
Generating directory documentation...
Generating index page...
Generating page index...
Generating module index...
Generating namespace index...
Generating namespace member index...
Generating annotated compound index...
Generating alphabetical compound index...
Generating hierarchical class index...
Generating member index...
Generating file index...
Generating file member index...
Generating example index...
finalizing index lists...
symbol cache used 107/65536 hits=6057 misses=107
lookup cache used 86/65536 hits=518 misses=87
finished...
cd doxygen/latex && make
make[2]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/doc/doxygen/latex'
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
pdflatex refman
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian)
restricted \write18 enabled.
entering extended mode
(./refman.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, lo
aded.
(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/bk10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty))
(/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)
(/usr/share/texlive/texmf-dist/tex/latex/natbib/natbib.sty)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty))))
(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty)
(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)))
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def))
(/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/backref.sty
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty))
Package hyperref Message: Driver: hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def)
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.dfu)))
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/courier.sty)
(/usr/share/texlive/texmf-dist/tex/latex/sectsty/sectsty.sty)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/usr/share/texlive/texmf-dist/tex/latex/tocloft/tocloft.sty) (./doxygen.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty)
(/usr/share/texlive/texmf-dist/tex/latex/xtab/xtab.sty)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def)))
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
Writing index file refman.idx
No file refman.aux.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd)
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2]
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd) [1] [2]
Chapter 1.
(./annotated.tex (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd)
LaTeX Warning: Reference `structconfig__params' on page 1 undefined on input li
ne 3.
LaTeX Warning: Reference `structstorage__record' on page 1 undefined on input l
ine 4.
) [1] [2]
Chapter 2.
(./files.tex
LaTeX Warning: Reference `client_8c' on page 3 undefined on input line 3.
LaTeX Warning: Reference `encrypt__passwd_8c' on page 3 undefined on input line
4.
LaTeX Warning: Reference `newclient_8c' on page 3 undefined on input line 5.
LaTeX Warning: Reference `server_8c' on page 3 undefined on input line 6.
LaTeX Warning: Reference `storage_8c' on page 3 undefined on input line 7.
LaTeX Warning: Reference `storage_8h' on page 3 undefined on input line 8.
LaTeX Warning: Reference `utils_8c' on page 3 undefined on input line 9.
LaTeX Warning: Reference `utils_8h' on page 3 undefined on input line 10.
) [3] [4]
Chapter 3.
(./structconfig__params.tex
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pcr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ts1phv.fd))
(./structstorage__record.tex [5]) [6]
Chapter 4.
(./encrypt__passwd_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--12
) (./server_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--25
Underfull \vbox (badness 10000) has occurred while \output is active [7]
Underfull \hbox (badness 2478) in paragraph at lines 45--46
[]\T1/phv/m/n/10 void [][]get-_-param[][] (char str[][][]M-A-X-_--V-A-L-U-E-_--
L-E-N[][][], char to-_-return[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], int param
-_-num, char
Underfull \hbox (badness 6708) in paragraph at lines 52--53
[]\T1/phv/m/n/10 int \T1/phv/b/n/10 check-_-mycolumns \T1/phv/m/n/10 (char val-
_-to-_-set[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], int num-_-columns, int table
-_-num, char
[8]
Underfull \hbox (badness 10000) in paragraph at lines 89--90
\T1/phv/m/n/10 tables[][][]M-A-X-_--T-A-B-L-E-S[][][][][][]M-A-X-_--C-O-L-U-M-N
-S-_--P-E-R-_--T-A-B-L-E[][][][][][]M-A-X-_--R-E-C-O-R-D-S-_--P-E-R-_--T-A-B-L-
E[][][][][][]M-A-X-_--S-T-R-T-Y-P-E-_--S-I-Z-
Underfull \hbox (badness 1803) in paragraph at lines 97--98
[]\T1/phv/m/n/10 int \T1/phv/b/n/10 predicates-_-true \T1/phv/m/n/10 (char pred
icates[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], char tables[][][]M-A-X-_--T-A-B-
L-E-S[][][][][][]M-A-X-_--C-O-L-U-M-N-S-_--P-
Underfull \hbox (badness 756) in paragraph at lines 97--98
\T1/phv/m/n/10 E-R-_--T-A-B-L-E[][][][][][]M-A-X-_--R-E-C-O-R-D-S-_--P-E-R-_--T
-A-B-L-E[][][][][][]M-A-X-_--S-T-R-T-Y-P-E-_--S-I-Z-E[][][], int num-_-columns,
int table-_-num, char
[9]
Underfull \vbox (badness 10000) detected at line 154
Underfull \vbox (badness 10000) detected at line 198
[10]
Underfull \vbox (badness 10000) detected at line 236
Underfull \vbox (badness 10000) detected at line 280
[11]
Underfull \vbox (badness 10000) detected at line 312
Underfull \vbox (badness 10000) detected at line 346
[12]
Underfull \vbox (badness 10000) detected at line 408
Underfull \vbox (badness 10000) detected at line 453
Underfull \vbox (badness 10000) detected at line 498
Underfull \vbox (badness 10000) has occurred while \output is active [13])
(./storage_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--19
[14]
Underfull \vbox (badness 10000) detected at line 71
Underfull \hbox (badness 4927) in paragraph at lines 81--82
[]\T1/phv/m/n/10 References E-R-R-_--A-U-T-H-E-N-T-I-C-A-T-I-O-N-_--F-A-I-L-E-D
, E-R-R-_--C-O-N-N-E-C-T-I-O-N-_--F-A-I-L, E-R-R-_--I-N-V-A-L-I-D-_--P-A-R-A-M,
generate-_-
Underfull \vbox (badness 10000) detected at line 103
Underfull \vbox (badness 10000) detected at line 129
[15]
Underfull \vbox (badness 10000) detected at line 167
Underfull \vbox (badness 10000) detected at line 205
) (./storage_8h.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--10
[16] [17]
Underfull \vbox (badness 10000) detected at line 135
Underfull \vbox (badness 10000) detected at line 151
[18]
Underfull \hbox (badness 4927) in paragraph at lines 161--162
[]\T1/phv/m/n/10 References E-R-R-_--A-U-T-H-E-N-T-I-C-A-T-I-O-N-_--F-A-I-L-E-D
, E-R-R-_--C-O-N-N-E-C-T-I-O-N-_--F-A-I-L, E-R-R-_--I-N-V-A-L-I-D-_--P-A-R-A-M,
generate-_-
Underfull \vbox (badness 10000) detected at line 181
Underfull \vbox (badness 10000) detected at line 195
Underfull \vbox (badness 10000) detected at line 219
Underfull \vbox (badness 10000) detected at line 231
Underfull \vbox (badness 10000) has occurred while \output is active [19]
Underfull \vbox (badness 10000) detected at line 267
Underfull \vbox (badness 10000) detected at line 287
Underfull \vbox (badness 10000) detected at line 326
[20]
Underfull \vbox (badness 10000) detected at line 356
Underfull \vbox (badness 10000) detected at line 376
[21]) (./utils_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--16
Underfull \vbox (badness 10000) detected at line 60
[22]
Underfull \vbox (badness 10000) detected at line 95
Underfull \vbox (badness 10000) detected at line 122
[23]) (./utils_8h.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--11
[24] (/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsphv.fd)
LaTeX Font Warning: Font shape `OMS/phv/bc/n' undefined
(Font) using `OMS/phv/m/n' instead
(Font) for symbol `textbraceleft' on input line 64.
Underfull \vbox (badness 10000) detected at line 111
Underfull \vbox (badness 10000) detected at line 146
Underfull \vbox (badness 10000) has occurred while \output is active [25]
Underfull \vbox (badness 10000) detected at line 173
)
No file refman.ind.
[26] (./refman.aux)
Package rerunfilecheck Warning: File `refman.out' has changed.
(rerunfilecheck) Rerun to get outlines right
(rerunfilecheck) or use package `bookmark'.
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
LaTeX Warning: There were undefined references.
LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
)
(see the transcript file for additional information)pdfTeX warning (dest): name
{utils_8h_source} has been referenced but does not exist, replaced by a fixed o
ne
pdfTeX warning (dest): name{utils_8c_source} has been referenced but does not e
xist, replaced by a fixed one
pdfTeX warning (dest): name{storage_8h_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{storage_8c_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{server_8c_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{encrypt__passwd_8c_source} has been referenced but
does not exist, replaced by a fixed one
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/
texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-
dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/f
onts/type1/urw/courier/ucrr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/ur
w/helvetic/uhvb8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/u
hvb8ac.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvbo8ac.pfb
></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></usr/share
/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb>
Output written on refman.pdf (30 pages, 145945 bytes).
Transcript written on refman.log.
makeindex refman.idx
pdflatex refman
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian)
restricted \write18 enabled.
entering extended mode
(./refman.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, lo
aded.
(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/bk10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty))
(/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)
(/usr/share/texlive/texmf-dist/tex/latex/natbib/natbib.sty)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty))))
(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty)
(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)))
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def))
(/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/backref.sty
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty))
Package hyperref Message: Driver: hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def)
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu)
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.dfu)))
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/courier.sty)
(/usr/share/texlive/texmf-dist/tex/latex/sectsty/sectsty.sty)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/usr/share/texlive/texmf-dist/tex/latex/tocloft/tocloft.sty) (./doxygen.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty)
(/usr/share/texlive/texmf-dist/tex/latex/xtab/xtab.sty)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def)))
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
Writing index file refman.idx
(./refman.aux) (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd)
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))
(./refman.out) (./refman.out) [1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.
map}] [2] (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)
(./refman.toc (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxztmcm.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd) [1]) [2]
Chapter 1.
(./annotated.tex) [1] [2]
Chapter 2.
(./files.tex
LaTeX Warning: Reference `client_8c' on page 3 undefined on input line 3.
LaTeX Warning: Reference `newclient_8c' on page 3 undefined on input line 5.
) [3] [4]
Chapter 3.
(./structconfig__params.tex
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pcr.fd)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ts1phv.fd))
(./structstorage__record.tex [5]) [6]
Chapter 4.
(./encrypt__passwd_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--12
) (./server_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--25
Underfull \vbox (badness 10000) has occurred while \output is active [7]
Underfull \hbox (badness 2478) in paragraph at lines 45--46
[]\T1/phv/m/n/10 void [][]get-_-param[][] (char str[][][]M-A-X-_--V-A-L-U-E-_--
L-E-N[][][], char to-_-return[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], int param
-_-num, char
Underfull \hbox (badness 6708) in paragraph at lines 52--53
[]\T1/phv/m/n/10 int \T1/phv/b/n/10 check-_-mycolumns \T1/phv/m/n/10 (char val-
_-to-_-set[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], int num-_-columns, int table
-_-num, char
[8]
Underfull \hbox (badness 10000) in paragraph at lines 89--90
\T1/phv/m/n/10 tables[][][]M-A-X-_--T-A-B-L-E-S[][][][][][]M-A-X-_--C-O-L-U-M-N
-S-_--P-E-R-_--T-A-B-L-E[][][][][][]M-A-X-_--R-E-C-O-R-D-S-_--P-E-R-_--T-A-B-L-
E[][][][][][]M-A-X-_--S-T-R-T-Y-P-E-_--S-I-Z-
Underfull \hbox (badness 1803) in paragraph at lines 97--98
[]\T1/phv/m/n/10 int \T1/phv/b/n/10 predicates-_-true \T1/phv/m/n/10 (char pred
icates[][][]M-A-X-_--V-A-L-U-E-_--L-E-N[][][], char tables[][][]M-A-X-_--T-A-B-
L-E-S[][][][][][]M-A-X-_--C-O-L-U-M-N-S-_--P-
Underfull \hbox (badness 756) in paragraph at lines 97--98
\T1/phv/m/n/10 E-R-_--T-A-B-L-E[][][][][][]M-A-X-_--R-E-C-O-R-D-S-_--P-E-R-_--T
-A-B-L-E[][][][][][]M-A-X-_--S-T-R-T-Y-P-E-_--S-I-Z-E[][][], int num-_-columns,
int table-_-num, char
[9]
Underfull \vbox (badness 10000) detected at line 154
Underfull \vbox (badness 10000) detected at line 198
[10]
Underfull \vbox (badness 10000) detected at line 236
Underfull \vbox (badness 10000) detected at line 280
[11]
Underfull \vbox (badness 10000) detected at line 312
Underfull \vbox (badness 10000) detected at line 346
[12]
Underfull \vbox (badness 10000) detected at line 408
Underfull \vbox (badness 10000) detected at line 453
Underfull \vbox (badness 10000) detected at line 498
Underfull \vbox (badness 10000) has occurred while \output is active [13])
(./storage_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--19
[14]
Underfull \vbox (badness 10000) detected at line 71
Underfull \hbox (badness 4927) in paragraph at lines 81--82
[]\T1/phv/m/n/10 References E-R-R-_--A-U-T-H-E-N-T-I-C-A-T-I-O-N-_--F-A-I-L-E-D
, E-R-R-_--C-O-N-N-E-C-T-I-O-N-_--F-A-I-L, E-R-R-_--I-N-V-A-L-I-D-_--P-A-R-A-M,
generate-_-
Underfull \vbox (badness 10000) detected at line 103
Underfull \vbox (badness 10000) detected at line 129
[15]
Underfull \vbox (badness 10000) detected at line 167
Underfull \vbox (badness 10000) detected at line 205
) (./storage_8h.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--10
[16] [17]
Underfull \vbox (badness 10000) detected at line 135
Underfull \vbox (badness 10000) detected at line 151
[18]
Underfull \hbox (badness 4927) in paragraph at lines 161--162
[]\T1/phv/m/n/10 References E-R-R-_--A-U-T-H-E-N-T-I-C-A-T-I-O-N-_--F-A-I-L-E-D
, E-R-R-_--C-O-N-N-E-C-T-I-O-N-_--F-A-I-L, E-R-R-_--I-N-V-A-L-I-D-_--P-A-R-A-M,
generate-_-
Underfull \vbox (badness 10000) detected at line 181
Underfull \vbox (badness 10000) detected at line 195
Underfull \vbox (badness 10000) detected at line 219
Underfull \vbox (badness 10000) detected at line 231
Underfull \vbox (badness 10000) has occurred while \output is active [19]
Underfull \vbox (badness 10000) detected at line 267
Underfull \vbox (badness 10000) detected at line 287
Underfull \vbox (badness 10000) detected at line 326
[20]
Underfull \vbox (badness 10000) detected at line 356
Underfull \vbox (badness 10000) detected at line 376
[21]) (./utils_8c.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--16
Underfull \vbox (badness 10000) detected at line 60
[22]
Underfull \vbox (badness 10000) detected at line 95
Underfull \vbox (badness 10000) detected at line 122
[23]) (./utils_8h.tex
Underfull \hbox (badness 10000) in paragraph at lines 9--11
[24] (/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsphv.fd)
LaTeX Font Warning: Font shape `OMS/phv/bc/n' undefined
(Font) using `OMS/phv/m/n' instead
(Font) for symbol `textbraceleft' on input line 64.
Underfull \vbox (badness 10000) detected at line 111
Underfull \vbox (badness 10000) detected at line 146
Underfull \vbox (badness 10000) has occurred while \output is active [25]
Underfull \vbox (badness 10000) detected at line 173
) (./refman.ind [26] [27] [28]) (./refman.aux)
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
LaTeX Warning: There were undefined references.
)
(see the transcript file for additional information)pdfTeX warning (dest): name
{utils_8h_source} has been referenced but does not exist, replaced by a fixed o
ne
pdfTeX warning (dest): name{utils_8c_source} has been referenced but does not e
xist, replaced by a fixed one
pdfTeX warning (dest): name{storage_8h_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{storage_8c_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{server_8c_source} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{encrypt__passwd_8c_source} has been referenced but
does not exist, replaced by a fixed one
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/
texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-
dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/f
onts/type1/urw/courier/ucrr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/ur
w/helvetic/uhvb8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/u
hvb8ac.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvbo8ac.pfb
></usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></usr/share
/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb>
Output written on refman.pdf (32 pages, 157141 bytes).
Transcript written on refman.log.
latex_count=5 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $latex_count -gt 0 ] ;\
do \
echo "Rerunning latex...." ;\
pdflatex refman ;\
latex_count=`expr $latex_count - 1` ;\
done
make[2]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/doc/doxygen/latex'
make[1]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/doc'
cd test && make clean build
make[1]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test'
cd a1-partial && make -s clean
make[2]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test/a1-partial'
make[2]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test/a1-partial'
cd a1-partial && make -s
make[2]: Entering directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test/a1-partial'
make[2]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test/a1-partial'
make[1]: Leaving directory `/nfs/ug/homes-0/s/steve148/ece297/storage/test'