-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubversion_log.txt
More file actions
796 lines (578 loc) · 25.1 KB
/
subversion_log.txt
File metadata and controls
796 lines (578 loc) · 25.1 KB
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
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
URL to view log online:
https://source.eait.uq.edu.au/viewvc/csse2310-2025-sem1/csse2310-s4910970/trunk/a4/?view=log
Retrieving logs at Fri May 30 13:21:55 AEST 2025
------------------------------------------------------------------------
r1 | uqpsutto@uq.edu.au | 2025-03-04 20:38:13 +1000 (Tue, 04 Mar 2025) | 1 line
Changed paths:
A /trunk
A /trunk/a4
Initial repository structure
------------------------------------------------------------------------
r84 | s4910970@uq.edu.au | 2025-05-29 06:55:01 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
A /trunk/a4/Makefile
test the svn connection
Index: Makefile
Makefile | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r85 | s4910970@uq.edu.au | 2025-05-29 10:22:01 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
A /trunk/a4/uqfacedetect.c
start up program add different exit situations and usage and exit
Index: uqfacedetect.c
uqfacedetect.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
------------------------------------------------------------------------
r86 | s4910970@uq.edu.au | 2025-05-29 10:29:48 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/Makefile
star up Makefile by adding CC, DFLAG and else
Index: Makefile
Makefile | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r87 | s4910970@uq.edu.au | 2025-05-29 10:30:30 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
A /trunk/a4/uqfaceclient.c
add the client site for programming
Index: uqfaceclient.c
uqfaceclient.c | 8 ++++++++
1 file changed, 8 insertions(+)
------------------------------------------------------------------------
r88 | s4910970@uq.edu.au | 2025-05-29 10:31:54 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
A /trunk/a4/protocol.c
add the program for protocol connection processing
Index: protocol.c
protocol.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
------------------------------------------------------------------------
r89 | s4910970@uq.edu.au | 2025-05-29 10:32:33 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
A /trunk/a4/protocol.h
add the .h file to define the name of protocol usage and function name
Index: protocol.h
protocol.h | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
------------------------------------------------------------------------
r90 | s4910970@uq.edu.au | 2025-05-29 18:37:24 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.h
add function to protocol list
Index: protocol.h
protocol.h | 10 ++++++++++
1 file changed, 10 insertions(+)
------------------------------------------------------------------------
r91 | s4910970@uq.edu.au | 2025-05-29 18:42:59 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add send message function, espexpecially about sending prefix and operation
Index: protocol.c
protocol.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r92 | s4910970@uq.edu.au | 2025-05-29 18:46:09 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add sending function about the image 1 size and data function
Index: protocol.c
protocol.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
------------------------------------------------------------------------
r93 | s4910970@uq.edu.au | 2025-05-29 18:48:34 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add function part about inserting image 2 for face replacement
Index: protocol.c
protocol.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
------------------------------------------------------------------------
r94 | s4910970@uq.edu.au | 2025-05-29 19:16:32 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
start code the receive protocol function with the prefix and operation parts
Index: protocol.c
protocol.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
------------------------------------------------------------------------
r95 | s4910970@uq.edu.au | 2025-05-29 19:17:58 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
code the receive image 1 size and data part in receive function
Index: protocol.c
protocol.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
------------------------------------------------------------------------
r96 | s4910970@uq.edu.au | 2025-05-29 19:19:10 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add receive image 2 for replacing face in receive function
Index: protocol.c
protocol.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
------------------------------------------------------------------------
r97 | s4910970@uq.edu.au | 2025-05-29 19:20:01 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add free memory function to clean up
Index: protocol.c
protocol.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r98 | s4910970@uq.edu.au | 2025-05-29 20:13:36 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add function to read the file into memory
Index: protocol.c
protocol.c | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
------------------------------------------------------------------------
r99 | s4910970@uq.edu.au | 2025-05-29 20:41:36 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
using 2310formate to change file style and add read stdin to memory and write to file function
Index: protocol.c
protocol.c | 137 +++++++++++++++++++++++++++++++++++++++++++------------------
1 file changed, 97 insertions(+), 40 deletions(-)
------------------------------------------------------------------------
r100 | s4910970@uq.edu.au | 2025-05-29 20:42:44 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/Makefile
using 2310reformat to Makefile to change the style
Index: Makefile
Makefile | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r101 | s4910970@uq.edu.au | 2025-05-29 20:43:28 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.h
using 2310reformat to protocol to cange the style coding
Index: protocol.h
protocol.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r102 | s4910970@uq.edu.au | 2025-05-29 20:46:56 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
using format to protocol and add write file to stdout function
Index: protocol.c
protocol.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
------------------------------------------------------------------------
r103 | s4910970@uq.edu.au | 2025-05-29 20:49:58 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/Makefile
add protocol.o to run the protocol part
Index: Makefile
Makefile | 5 +++++
1 file changed, 5 insertions(+)
------------------------------------------------------------------------
r104 | s4910970@uq.edu.au | 2025-05-29 22:22:33 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add function about parse command lineexpecially about the empty and limit
Index: uqfacedetect.c
uqfacedetect.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
------------------------------------------------------------------------
r105 | s4910970@uq.edu.au | 2025-05-29 22:27:16 +1000 (Thu, 29 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add the maxsie limitation and the check image file function
Index: uqfacedetect.c
uqfacedetect.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
------------------------------------------------------------------------
r106 | s4910970@uq.edu.au | 2025-05-30 01:15:07 +1000 (Fri, 30 May 2025) | 2 lines
Changed paths:
M /trunk/a4/Makefile
add server program and clean progress
Index: Makefile
Makefile | 12 ++++++++++++
1 file changed, 12 insertions(+)
------------------------------------------------------------------------
r107 | s4910970@uq.edu.au | 2025-05-30 01:15:44 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add load cascade function
Index: uqfacedetect.c
uqfacedetect.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
------------------------------------------------------------------------
r108 | s4910970@uq.edu.au | 2025-05-30 01:17:23 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add opencv parameters and path for files
Index: uqfacedetect.c
uqfacedetect.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
------------------------------------------------------------------------
r109 | s4910970@uq.edu.au | 2025-05-30 01:20:15 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add global variables to matain the information
Index: uqfacedetect.c
uqfacedetect.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r110 | s4910970@uq.edu.au | 2025-05-30 05:07:03 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add portnumber print function
Index: uqfacedetect.c
uqfacedetect.c | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 82 insertions(+)
------------------------------------------------------------------------
r111 | s4910970@uq.edu.au | 2025-05-30 05:10:58 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
draw ellipses around faces and circles around eyes
Index: uqfacedetect.c
uqfacedetect.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 92 insertions(+)
------------------------------------------------------------------------
r112 | s4910970@uq.edu.au | 2025-05-30 05:15:00 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
star replacement function
Index: uqfacedetect.c
uqfacedetect.c | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
------------------------------------------------------------------------
r113 | s4910970@uq.edu.au | 2025-05-30 05:16:27 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add the replace part and save new image part in replacement function
Index: uqfacedetect.c
uqfacedetect.c | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
------------------------------------------------------------------------
r114 | s4910970@uq.edu.au | 2025-05-30 05:17:19 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add send error message function
Index: uqfacedetect.c
uqfacedetect.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
------------------------------------------------------------------------
r115 | s4910970@uq.edu.au | 2025-05-30 05:20:38 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
start up by adding exit situation and command line function
Index: uqfaceclient.c
uqfaceclient.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
------------------------------------------------------------------------
r116 | s4910970@uq.edu.au | 2025-05-30 05:21:18 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add send output image function
Index: uqfacedetect.c
uqfacedetect.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
------------------------------------------------------------------------
r117 | s4910970@uq.edu.au | 2025-05-30 05:34:06 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add parse command line function for detectfile and output and replace file
Index: uqfaceclient.c
uqfaceclient.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
------------------------------------------------------------------------
r118 | s4910970@uq.edu.au | 2025-05-30 05:36:16 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add check file function
Index: uqfaceclient.c
uqfaceclient.c | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
------------------------------------------------------------------------
r119 | s4910970@uq.edu.au | 2025-05-30 05:37:37 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add handling connection functionwith client and read image part
Index: uqfacedetect.c
uqfacedetect.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 86 insertions(+)
------------------------------------------------------------------------
r120 | s4910970@uq.edu.au | 2025-05-30 05:40:44 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
handle the face replcement function
Index: uqfacedetect.c
uqfacedetect.c | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
------------------------------------------------------------------------
r121 | s4910970@uq.edu.au | 2025-05-30 05:43:24 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add connect server function
Index: uqfaceclient.c
uqfaceclient.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
------------------------------------------------------------------------
r122 | s4910970@uq.edu.au | 2025-05-30 05:47:08 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add processthe requestion function
Index: uqfacedetect.c
uqfacedetect.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 63 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r123 | s4910970@uq.edu.au | 2025-05-30 05:49:59 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add server communicate
Index: uqfaceclient.c
uqfaceclient.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
------------------------------------------------------------------------
r124 | s4910970@uq.edu.au | 2025-05-30 05:53:47 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add handle signal for thread function
Index: uqfacedetect.c
uqfacedetect.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
------------------------------------------------------------------------
r125 | s4910970@uq.edu.au | 2025-05-30 06:11:43 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
target to finish make error and add detect process
Index: uqfacedetect.c
uqfacedetect.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 50 insertions(+), 1 deletion(-)
------------------------------------------------------------------------
r126 | s4910970@uq.edu.au | 2025-05-30 06:12:29 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add function about response to server by basing operater type
Index: uqfaceclient.c
uqfaceclient.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 58 insertions(+), 2 deletions(-)
------------------------------------------------------------------------
r127 | s4910970@uq.edu.au | 2025-05-30 06:13:06 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/Makefile
back to previous one without format to get error
Index: Makefile
Makefile | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r128 | s4910970@uq.edu.au | 2025-05-30 06:19:29 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
run 2310reformat for it
Index: uqfacedetect.c
uqfacedetect.c | 260 ++++++++++++++++++++++++++++-----------------------------
1 file changed, 132 insertions(+), 128 deletions(-)
------------------------------------------------------------------------
r129 | s4910970@uq.edu.au | 2025-05-30 06:19:58 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
run 2310reformat to it
Index: uqfaceclient.c
uqfaceclient.c | 171 +++++++++++++++++++++++++++++++--------------------------
1 file changed, 95 insertions(+), 76 deletions(-)
------------------------------------------------------------------------
r130 | s4910970@uq.edu.au | 2025-05-30 07:09:12 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
change the global to struct
Index: uqfacedetect.c
uqfacedetect.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r131 | s4910970@uq.edu.au | 2025-05-30 07:14:43 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add servercontext as struct from global variables
Index: uqfacedetect.c
uqfacedetect.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r132 | s4910970@uq.edu.au | 2025-05-30 07:18:12 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
fix the struct to process face detection function
Index: uqfacedetect.c
uqfacedetect.c | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
------------------------------------------------------------------------
r133 | s4910970@uq.edu.au | 2025-05-30 07:29:35 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add servercontext struct to replace global variables
Index: uqfacedetect.c
uqfacedetect.c | 88 ++++++++++++++++++++++++++++-----------------------------
1 file changed, 44 insertions(+), 44 deletions(-)
------------------------------------------------------------------------
r134 | s4910970@uq.edu.au | 2025-05-30 07:34:39 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
initialize server context in main process
Index: uqfacedetect.c
uqfacedetect.c | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
------------------------------------------------------------------------
r135 | s4910970@uq.edu.au | 2025-05-30 07:37:50 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
fix struct servertext issue in main
Index: uqfacedetect.c
uqfacedetect.c | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
------------------------------------------------------------------------
r136 | s4910970@uq.edu.au | 2025-05-30 07:46:52 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add refer
Index: uqfacedetect.c
uqfacedetect.c | 38 ++++++++++++++++++++++----------------
1 file changed, 22 insertions(+), 16 deletions(-)
------------------------------------------------------------------------
r137 | s4910970@uq.edu.au | 2025-05-30 07:50:01 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
A /trunk/a4/toolHistory.txt
add ai tool history
Index: toolHistory.txt
toolHistory.txt | 286 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 286 insertions(+)
------------------------------------------------------------------------
r138 | s4910970@uq.edu.au | 2025-05-30 08:08:40 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
try to figure out test 11(failed)
Index: uqfacedetect.c
uqfacedetect.c | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
------------------------------------------------------------------------
r139 | s4910970@uq.edu.au | 2025-05-30 08:52:24 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add REF
Index: uqfacedetect.c
uqfacedetect.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
------------------------------------------------------------------------
r140 | s4910970@uq.edu.au | 2025-05-30 08:52:32 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfaceclient.c
add REF
Index: uqfaceclient.c
uqfaceclient.c | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r141 | s4910970@uq.edu.au | 2025-05-30 08:52:59 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
add REF
Index: protocol.c
protocol.c | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r142 | s4910970@uq.edu.au | 2025-05-30 09:13:47 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/Makefile
recode the file with tutor guidence to fix warning about send_message function
Index: Makefile
Makefile | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
------------------------------------------------------------------------
r143 | s4910970@uq.edu.au | 2025-05-30 09:19:30 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
use 2310reformat.sh to solve clang issue
Index: uqfacedetect.c
uqfacedetect.c | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
------------------------------------------------------------------------
r144 | s4910970@uq.edu.au | 2025-05-30 10:21:58 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
get back to previous one
Index: protocol.c
protocol.c | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r145 | s4910970@uq.edu.au | 2025-05-30 10:22:08 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
get back to previous one
Index: uqfacedetect.c
uqfacedetect.c | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
------------------------------------------------------------------------
r146 | s4910970@uq.edu.au | 2025-05-30 10:28:25 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.h
add send message function in .h file
Index: protocol.h
protocol.h | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r147 | s4910970@uq.edu.au | 2025-05-30 10:31:19 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add refer for server-multiprocess.c
Index: uqfacedetect.c
uqfacedetect.c | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r148 | s4910970@uq.edu.au | 2025-05-30 12:10:08 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
change the number to a word in u32 yo litendian function
Index: protocol.c
protocol.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
------------------------------------------------------------------------
r149 | s4910970@uq.edu.au | 2025-05-30 12:18:03 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
fix clang-formatted issue
Index: uqfacedetect.c
uqfacedetect.c | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
------------------------------------------------------------------------
r150 | s4910970@uq.edu.au | 2025-05-30 12:18:39 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
try to change number as word to be more readable
Index: protocol.c
protocol.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
------------------------------------------------------------------------
r151 | s4910970@uq.edu.au | 2025-05-30 12:51:25 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
add ref in signal handler function
Index: uqfacedetect.c
uqfacedetect.c | 1 +
1 file changed, 1 insertion(+)
------------------------------------------------------------------------
r152 | s4910970@uq.edu.au | 2025-05-30 13:13:12 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
fix test 17 question by man pthread_sigmark and add refer in code
Index: uqfacedetect.c
uqfacedetect.c | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
------------------------------------------------------------------------
r153 | s4910970@uq.edu.au | 2025-05-30 13:21:24 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/protocol.c
redone the style change
Index: protocol.c
protocol.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
------------------------------------------------------------------------
r154 | s4910970@uq.edu.au | 2025-05-30 13:21:34 +1000 (Fri, 30 May 2025) | 1 line
Changed paths:
M /trunk/a4/uqfacedetect.c
redone the style change
Index: uqfacedetect.c
uqfacedetect.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
------------------------------------------------------------------------