File: classGio_1_1TlsConnection.html

package info (click to toggle)
glibmm2.4 2.42.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 53,308 kB
  • ctags: 14,868
  • sloc: xml: 108,462; cpp: 15,282; sh: 11,421; perl: 5,139; python: 1,626; makefile: 304
file content (1621 lines) | stat: -rw-r--r-- 149,372 bytes parent folder | download
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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.7"/>
<title>glibmm: Gio::TlsConnection Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">glibmm
   &#160;<span id="projectnumber">2.42.0</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
<div id="nav-path" class="navpath">
  <ul>
<li class="navelem"><a class="el" href="namespaceGio.html">Gio</a></li><li class="navelem"><a class="el" href="classGio_1_1TlsConnection.html">TlsConnection</a></li>  </ul>
</div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#related">Related Functions</a> &#124;
<a href="classGio_1_1TlsConnection-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">Gio::TlsConnection Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p><a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> - TLS connection type.  
 <a href="classGio_1_1TlsConnection.html#details">More...</a></p>

<p><code>#include &lt;giomm/tlsconnection.h&gt;</code></p>
<div class="dynheader">
Inheritance diagram for Gio::TlsConnection:</div>
<div class="dyncontent">
<div class="center"><img src="classGio_1_1TlsConnection__inherit__graph.png" border="0" usemap="#Gio_1_1TlsConnection_inherit__map" alt="Inheritance graph"/></div>
<map name="Gio_1_1TlsConnection_inherit__map" id="Gio_1_1TlsConnection_inherit__map">
<area shape="rect" id="node6" href="classGio_1_1TlsClientConnection.html" title="TlsClientConnection &#45; TLS client&#45;side connection. " alt="" coords="5,379,181,405"/><area shape="rect" id="node7" href="classGio_1_1TlsServerConnection.html" title="TlsServerConnection &#45; TLS server&#45;side connection. " alt="" coords="206,379,388,405"/><area shape="rect" id="node2" href="classGio_1_1IOStream.html" title="IOStream &#45; Base class for implementing read/write streams. " alt="" coords="139,229,249,256"/><area shape="rect" id="node3" href="classGlib_1_1Object.html" title="Glib::Object" alt="" coords="147,155,241,181"/><area shape="rect" id="node4" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. " alt="" coords="131,80,257,107"/><area shape="rect" id="node5" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="137,5,252,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a7d5e5dbc0066cf098454003b65a16207"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a7d5e5dbc0066cf098454003b65a16207">~TlsConnection</a> ()</td></tr>
<tr class="separator:a7d5e5dbc0066cf098454003b65a16207"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae513dda3f0487a37e1875c1fa3cb34ab"><td class="memItemLeft" align="right" valign="top">GTlsConnection*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ae513dda3f0487a37e1875c1fa3cb34ab">gobj</a> ()</td></tr>
<tr class="memdesc:ae513dda3f0487a37e1875c1fa3cb34ab"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#ae513dda3f0487a37e1875c1fa3cb34ab">More...</a><br /></td></tr>
<tr class="separator:ae513dda3f0487a37e1875c1fa3cb34ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e24f1584af4fb572c48fff69538e2e2"><td class="memItemLeft" align="right" valign="top">const GTlsConnection*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a3e24f1584af4fb572c48fff69538e2e2">gobj</a> () const </td></tr>
<tr class="memdesc:a3e24f1584af4fb572c48fff69538e2e2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a3e24f1584af4fb572c48fff69538e2e2">More...</a><br /></td></tr>
<tr class="separator:a3e24f1584af4fb572c48fff69538e2e2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a94b2d51c0a2b977033525d2bf237d1"><td class="memItemLeft" align="right" valign="top">GTlsConnection*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a4a94b2d51c0a2b977033525d2bf237d1">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a4a94b2d51c0a2b977033525d2bf237d1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.  <a href="#a4a94b2d51c0a2b977033525d2bf237d1">More...</a><br /></td></tr>
<tr class="separator:a4a94b2d51c0a2b977033525d2bf237d1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a974de86a9b7dc775a6761b5f7f94d45d"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a974de86a9b7dc775a6761b5f7f94d45d">set_certificate</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp; certificate)</td></tr>
<tr class="memdesc:a974de86a9b7dc775a6761b5f7f94d45d"><td class="mdescLeft">&#160;</td><td class="mdescRight">This sets the certificate that <em>conn</em> will present to its peer during the TLS handshake.  <a href="#a974de86a9b7dc775a6761b5f7f94d45d">More...</a><br /></td></tr>
<tr class="separator:a974de86a9b7dc775a6761b5f7f94d45d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09c073fa67f5a6c57227ab3b9897599a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a09c073fa67f5a6c57227ab3b9897599a">get_certificate</a> ()</td></tr>
<tr class="memdesc:a09c073fa67f5a6c57227ab3b9897599a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets <em>conn's</em> certificate, as set by g_tls_connection_set_certificate().  <a href="#a09c073fa67f5a6c57227ab3b9897599a">More...</a><br /></td></tr>
<tr class="separator:a09c073fa67f5a6c57227ab3b9897599a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a559d5812b40763598293532dfdb3cb6f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <br class="typebreak" />
<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a559d5812b40763598293532dfdb3cb6f">get_certificate</a> () const </td></tr>
<tr class="memdesc:a559d5812b40763598293532dfdb3cb6f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets <em>conn's</em> certificate, as set by g_tls_connection_set_certificate().  <a href="#a559d5812b40763598293532dfdb3cb6f">More...</a><br /></td></tr>
<tr class="separator:a559d5812b40763598293532dfdb3cb6f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a949f32e398a0db3ff11a1ca064d0f42d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a949f32e398a0db3ff11a1ca064d0f42d">get_peer_certificate</a> ()</td></tr>
<tr class="memdesc:a949f32e398a0db3ff11a1ca064d0f42d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets <em>conn's</em> peer's certificate after the handshake has completed.  <a href="#a949f32e398a0db3ff11a1ca064d0f42d">More...</a><br /></td></tr>
<tr class="separator:a949f32e398a0db3ff11a1ca064d0f42d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f8e34d8fea388ad83592ca49c72c7ea"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <br class="typebreak" />
<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a4f8e34d8fea388ad83592ca49c72c7ea">get_peer_certificate</a> () const </td></tr>
<tr class="memdesc:a4f8e34d8fea388ad83592ca49c72c7ea"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets <em>conn's</em> peer's certificate after the handshake has completed.  <a href="#a4f8e34d8fea388ad83592ca49c72c7ea">More...</a><br /></td></tr>
<tr class="separator:a4f8e34d8fea388ad83592ca49c72c7ea"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86f8b024dd438ea3a433711b7a7e4724"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a86f8b024dd438ea3a433711b7a7e4724">get_peer_certificate_errors</a> () const </td></tr>
<tr class="memdesc:a86f8b024dd438ea3a433711b7a7e4724"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the errors associated with validating <em>conn's</em> peer's certificate, after the handshake has completed.  <a href="#a86f8b024dd438ea3a433711b7a7e4724">More...</a><br /></td></tr>
<tr class="separator:a86f8b024dd438ea3a433711b7a7e4724"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4f67ea320dfa95aa977230dafdc3a6e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ac4f67ea320dfa95aa977230dafdc3a6e">set_require_close_notify</a> (bool require_close_notify=true)</td></tr>
<tr class="memdesc:ac4f67ea320dfa95aa977230dafdc3a6e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether or not <em>conn</em> expects a proper TLS close notification before the connection is closed.  <a href="#ac4f67ea320dfa95aa977230dafdc3a6e">More...</a><br /></td></tr>
<tr class="separator:ac4f67ea320dfa95aa977230dafdc3a6e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37bdc0331982e6b823603a61f9099bac"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a37bdc0331982e6b823603a61f9099bac">get_require_close_notify</a> () const </td></tr>
<tr class="memdesc:a37bdc0331982e6b823603a61f9099bac"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tests whether or not <em>conn</em> expects a proper TLS close notification when the connection is closed.  <a href="#a37bdc0331982e6b823603a61f9099bac">More...</a><br /></td></tr>
<tr class="separator:a37bdc0331982e6b823603a61f9099bac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20ff315a64ffc0268843b103ea177ec1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a20ff315a64ffc0268843b103ea177ec1">set_rehandshake_mode</a> (<a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> mode)</td></tr>
<tr class="memdesc:a20ff315a64ffc0268843b103ea177ec1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets how <em>conn</em> behaves with respect to rehandshaking requests.  <a href="#a20ff315a64ffc0268843b103ea177ec1">More...</a><br /></td></tr>
<tr class="separator:a20ff315a64ffc0268843b103ea177ec1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2fbc0f291ab3c8f7f003f5902743199c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a2fbc0f291ab3c8f7f003f5902743199c">get_rehandshake_mode</a> () const </td></tr>
<tr class="memdesc:a2fbc0f291ab3c8f7f003f5902743199c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets <em>conn</em> rehandshaking mode.  <a href="#a2fbc0f291ab3c8f7f003f5902743199c">More...</a><br /></td></tr>
<tr class="separator:a2fbc0f291ab3c8f7f003f5902743199c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e0a8bb62da8f2e949618dab9628d969"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a0e0a8bb62da8f2e949618dab9628d969">set_use_system_certdb</a> (bool use_system_certdb=true)</td></tr>
<tr class="memdesc:a0e0a8bb62da8f2e949618dab9628d969"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether <em>conn</em> uses the system certificate database to verify peer certificates.  <a href="#a0e0a8bb62da8f2e949618dab9628d969">More...</a><br /></td></tr>
<tr class="separator:a0e0a8bb62da8f2e949618dab9628d969"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac41da72a42636c8110b45c62f8d57dcc"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ac41da72a42636c8110b45c62f8d57dcc">get_use_system_certdb</a> () const </td></tr>
<tr class="memdesc:ac41da72a42636c8110b45c62f8d57dcc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets whether <em>conn</em> uses the system certificate database to verify peer certificates.  <a href="#ac41da72a42636c8110b45c62f8d57dcc">More...</a><br /></td></tr>
<tr class="separator:ac41da72a42636c8110b45c62f8d57dcc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41ccee6cf03993882901d7c4078a9837"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a41ccee6cf03993882901d7c4078a9837">get_database</a> ()</td></tr>
<tr class="memdesc:a41ccee6cf03993882901d7c4078a9837"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the certificate database that <em>conn</em> uses to verify peer certificates.  <a href="#a41ccee6cf03993882901d7c4078a9837">More...</a><br /></td></tr>
<tr class="separator:a41ccee6cf03993882901d7c4078a9837"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa1e8bf85c98d0a8d8a44e204a8775fca"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#aa1e8bf85c98d0a8d8a44e204a8775fca">get_database</a> () const </td></tr>
<tr class="memdesc:aa1e8bf85c98d0a8d8a44e204a8775fca"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the certificate database that <em>conn</em> uses to verify peer certificates.  <a href="#aa1e8bf85c98d0a8d8a44e204a8775fca">More...</a><br /></td></tr>
<tr class="separator:aa1e8bf85c98d0a8d8a44e204a8775fca"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a804e8d1f55047648954afa68b4f41573"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a804e8d1f55047648954afa68b4f41573">set_database</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt;&amp; database)</td></tr>
<tr class="memdesc:a804e8d1f55047648954afa68b4f41573"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the certificate database that is used to verify peer certificates.  <a href="#a804e8d1f55047648954afa68b4f41573">More...</a><br /></td></tr>
<tr class="separator:a804e8d1f55047648954afa68b4f41573"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a05d31ec8b010650a1a6ec40710e77e45"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a05d31ec8b010650a1a6ec40710e77e45">get_interaction</a> ()</td></tr>
<tr class="memdesc:a05d31ec8b010650a1a6ec40710e77e45"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the object that will be used to interact with the user.  <a href="#a05d31ec8b010650a1a6ec40710e77e45">More...</a><br /></td></tr>
<tr class="separator:a05d31ec8b010650a1a6ec40710e77e45"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a113a17afb6045c82fb148da0cb628bad"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <br class="typebreak" />
<a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a113a17afb6045c82fb148da0cb628bad">get_interaction</a> () const </td></tr>
<tr class="memdesc:a113a17afb6045c82fb148da0cb628bad"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the object that will be used to interact with the user.  <a href="#a113a17afb6045c82fb148da0cb628bad">More...</a><br /></td></tr>
<tr class="separator:a113a17afb6045c82fb148da0cb628bad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c655d74f49d3d6e3ee5fd76f2f4cee3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a3c655d74f49d3d6e3ee5fd76f2f4cee3">set_interaction</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt;&amp; interaction)</td></tr>
<tr class="memdesc:a3c655d74f49d3d6e3ee5fd76f2f4cee3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the object that will be used to interact with the user.  <a href="#a3c655d74f49d3d6e3ee5fd76f2f4cee3">More...</a><br /></td></tr>
<tr class="separator:a3c655d74f49d3d6e3ee5fd76f2f4cee3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09df03551eb0a51a9e27a69888e21eb9"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a09df03551eb0a51a9e27a69888e21eb9">handshake</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable)</td></tr>
<tr class="memdesc:a09df03551eb0a51a9e27a69888e21eb9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Attempts a TLS handshake on <em>conn</em>.  <a href="#a09df03551eb0a51a9e27a69888e21eb9">More...</a><br /></td></tr>
<tr class="separator:a09df03551eb0a51a9e27a69888e21eb9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af21398df0db2c262d85f0c6e53490361"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#af21398df0db2c262d85f0c6e53490361">handshake</a> ()</td></tr>
<tr class="memdesc:af21398df0db2c262d85f0c6e53490361"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="el" href="classGio_1_1TlsConnection.html#af21398df0db2c262d85f0c6e53490361" title="A handshake() convenience overload. ">handshake()</a> convenience overload.  <a href="#af21398df0db2c262d85f0c6e53490361">More...</a><br /></td></tr>
<tr class="separator:af21398df0db2c262d85f0c6e53490361"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa526566be787e541f06aa9861449554e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#aa526566be787e541f06aa9861449554e">handshake_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:aa526566be787e541f06aa9861449554e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asynchronously performs a TLS handshake on <em>conn</em>.  <a href="#aa526566be787e541f06aa9861449554e">More...</a><br /></td></tr>
<tr class="separator:aa526566be787e541f06aa9861449554e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab364be698a273fe9f2caaab24c7a66c7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ab364be698a273fe9f2caaab24c7a66c7">handshake_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:ab364be698a273fe9f2caaab24c7a66c7"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="el" href="classGio_1_1TlsConnection.html#aa526566be787e541f06aa9861449554e" title="Asynchronously performs a TLS handshake on conn. ">handshake_async()</a> convenience overload.  <a href="#ab364be698a273fe9f2caaab24c7a66c7">More...</a><br /></td></tr>
<tr class="separator:ab364be698a273fe9f2caaab24c7a66c7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd49faefa24f86b5f5f02248eb8d1ca4"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#abd49faefa24f86b5f5f02248eb8d1ca4">handshake_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp; result)</td></tr>
<tr class="memdesc:abd49faefa24f86b5f5f02248eb8d1ca4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Finish an asynchronous TLS handshake operation.  <a href="#abd49faefa24f86b5f5f02248eb8d1ca4">More...</a><br /></td></tr>
<tr class="separator:abd49faefa24f86b5f5f02248eb8d1ca4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a56e06ceb75e2a006c3460e771a3f9711"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a56e06ceb75e2a006c3460e771a3f9711">emit_accept_certificate</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp; peer_cert, <a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> errors)</td></tr>
<tr class="memdesc:a56e06ceb75e2a006c3460e771a3f9711"><td class="mdescLeft">&#160;</td><td class="mdescRight">Used by <a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> implementations to emit the <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a> signal.  <a href="#a56e06ceb75e2a006c3460e771a3f9711">More...</a><br /></td></tr>
<tr class="separator:a56e06ceb75e2a006c3460e771a3f9711"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9564b05470eccdf6b238133de0202d7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1IOStream.html">IOStream</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#aa9564b05470eccdf6b238133de0202d7">property_base_io_stream</a> () const </td></tr>
<tr class="memdesc:aa9564b05470eccdf6b238133de0202d7"><td class="mdescLeft">&#160;</td><td class="mdescRight">The GIOStream that the connection wraps.  <a href="#aa9564b05470eccdf6b238133de0202d7">More...</a><br /></td></tr>
<tr class="separator:aa9564b05470eccdf6b238133de0202d7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a04f7860540d388948206654f89940d22"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a04f7860540d388948206654f89940d22">property_certificate</a> ()</td></tr>
<tr class="memdesc:a04f7860540d388948206654f89940d22"><td class="mdescLeft">&#160;</td><td class="mdescRight">The connection's certificate.  <a href="#a04f7860540d388948206654f89940d22">More...</a><br /></td></tr>
<tr class="separator:a04f7860540d388948206654f89940d22"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a73d45b333fd4cce39e713a3dc814d985"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a73d45b333fd4cce39e713a3dc814d985">property_certificate</a> () const </td></tr>
<tr class="memdesc:a73d45b333fd4cce39e713a3dc814d985"><td class="mdescLeft">&#160;</td><td class="mdescRight">The connection's certificate.  <a href="#a73d45b333fd4cce39e713a3dc814d985">More...</a><br /></td></tr>
<tr class="separator:a73d45b333fd4cce39e713a3dc814d985"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a313d4c310935af531eff29c95b24bcf2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a313d4c310935af531eff29c95b24bcf2">property_database</a> ()</td></tr>
<tr class="memdesc:a313d4c310935af531eff29c95b24bcf2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Certificate database to use for looking up or verifying certificates.  <a href="#a313d4c310935af531eff29c95b24bcf2">More...</a><br /></td></tr>
<tr class="separator:a313d4c310935af531eff29c95b24bcf2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a818a49c90b2f28775ea47b328914302d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a818a49c90b2f28775ea47b328914302d">property_database</a> () const </td></tr>
<tr class="memdesc:a818a49c90b2f28775ea47b328914302d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Certificate database to use for looking up or verifying certificates.  <a href="#a818a49c90b2f28775ea47b328914302d">More...</a><br /></td></tr>
<tr class="separator:a818a49c90b2f28775ea47b328914302d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1626c66d68bd76754f8b586fd7e5a0e2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a1626c66d68bd76754f8b586fd7e5a0e2">property_interaction</a> ()</td></tr>
<tr class="memdesc:a1626c66d68bd76754f8b586fd7e5a0e2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Optional object for user interaction.  <a href="#a1626c66d68bd76754f8b586fd7e5a0e2">More...</a><br /></td></tr>
<tr class="separator:a1626c66d68bd76754f8b586fd7e5a0e2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20d303e1a89411cba4d641ce2b759895"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a20d303e1a89411cba4d641ce2b759895">property_interaction</a> () const </td></tr>
<tr class="memdesc:a20d303e1a89411cba4d641ce2b759895"><td class="mdescLeft">&#160;</td><td class="mdescRight">Optional object for user interaction.  <a href="#a20d303e1a89411cba4d641ce2b759895">More...</a><br /></td></tr>
<tr class="separator:a20d303e1a89411cba4d641ce2b759895"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62062eb1d9a0d08bf4addd269a21b5ff"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a62062eb1d9a0d08bf4addd269a21b5ff">property_peer_certificate</a> () const </td></tr>
<tr class="memdesc:a62062eb1d9a0d08bf4addd269a21b5ff"><td class="mdescLeft">&#160;</td><td class="mdescRight">The connection's peer's certificate.  <a href="#a62062eb1d9a0d08bf4addd269a21b5ff">More...</a><br /></td></tr>
<tr class="separator:a62062eb1d9a0d08bf4addd269a21b5ff"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a50685f3f382e545060beec92de5092"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a1a50685f3f382e545060beec92de5092">property_peer_certificate_errors</a> () const </td></tr>
<tr class="memdesc:a1a50685f3f382e545060beec92de5092"><td class="mdescLeft">&#160;</td><td class="mdescRight">Errors found with the peer's certificate.  <a href="#a1a50685f3f382e545060beec92de5092">More...</a><br /></td></tr>
<tr class="separator:a1a50685f3f382e545060beec92de5092"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1ed594a9d690b1e5a9d4be9cb6b027a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
&lt; <a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ae1ed594a9d690b1e5a9d4be9cb6b027a">property_rehandshake_mode</a> ()</td></tr>
<tr class="memdesc:ae1ed594a9d690b1e5a9d4be9cb6b027a"><td class="mdescLeft">&#160;</td><td class="mdescRight">When to allow rehandshaking.  <a href="#ae1ed594a9d690b1e5a9d4be9cb6b027a">More...</a><br /></td></tr>
<tr class="separator:ae1ed594a9d690b1e5a9d4be9cb6b027a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55e1427c9d1dc8cc49ea26a7dd907baa"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; <a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a55e1427c9d1dc8cc49ea26a7dd907baa">property_rehandshake_mode</a> () const </td></tr>
<tr class="memdesc:a55e1427c9d1dc8cc49ea26a7dd907baa"><td class="mdescLeft">&#160;</td><td class="mdescRight">When to allow rehandshaking.  <a href="#a55e1427c9d1dc8cc49ea26a7dd907baa">More...</a><br /></td></tr>
<tr class="separator:a55e1427c9d1dc8cc49ea26a7dd907baa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa8b1acb49b52aafd8d6a9f38edf425c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#afa8b1acb49b52aafd8d6a9f38edf425c">property_require_close_notify</a> ()</td></tr>
<tr class="memdesc:afa8b1acb49b52aafd8d6a9f38edf425c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to require proper TLS close notification.  <a href="#afa8b1acb49b52aafd8d6a9f38edf425c">More...</a><br /></td></tr>
<tr class="separator:afa8b1acb49b52aafd8d6a9f38edf425c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a293fafd9326a5d7c4cd2cb623f4450f5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a293fafd9326a5d7c4cd2cb623f4450f5">property_require_close_notify</a> () const </td></tr>
<tr class="memdesc:a293fafd9326a5d7c4cd2cb623f4450f5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to require proper TLS close notification.  <a href="#a293fafd9326a5d7c4cd2cb623f4450f5">More...</a><br /></td></tr>
<tr class="separator:a293fafd9326a5d7c4cd2cb623f4450f5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c08e6c8020b25ba4a1001788537839d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a2c08e6c8020b25ba4a1001788537839d">property_use_system_certdb</a> ()</td></tr>
<tr class="memdesc:a2c08e6c8020b25ba4a1001788537839d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to verify peer certificates against the system certificate database.  <a href="#a2c08e6c8020b25ba4a1001788537839d">More...</a><br /></td></tr>
<tr class="separator:a2c08e6c8020b25ba4a1001788537839d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab95b5bbf963f80c969bd3516fc60c922"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#ab95b5bbf963f80c969bd3516fc60c922">property_use_system_certdb</a> () const </td></tr>
<tr class="memdesc:ab95b5bbf963f80c969bd3516fc60c922"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to verify peer certificates against the system certificate database.  <a href="#ab95b5bbf963f80c969bd3516fc60c922">More...</a><br /></td></tr>
<tr class="separator:ab95b5bbf963f80c969bd3516fc60c922"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23f7657a08ab7736cc722bc93fedcbba"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; bool, <br class="typebreak" />
const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <br class="typebreak" />
<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;<br class="typebreak" />
&amp;, <a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">signal_accept_certificate</a> ()</td></tr>
<tr class="separator:a23f7657a08ab7736cc722bc93fedcbba"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a301aad50aa459b546016366bea097f5c"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a301aad50aa459b546016366bea097f5c">handshake_vfunc</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable)</td></tr>
<tr class="separator:a301aad50aa459b546016366bea097f5c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeb5004a32047d0aebf418e8fc4cdf37a"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#aeb5004a32047d0aebf418e8fc4cdf37a">handshake_async_vfunc</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable, int io_priority)</td></tr>
<tr class="separator:aeb5004a32047d0aebf418e8fc4cdf37a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeef4191d4e1f29b8e614637d73c331e4"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#aeef4191d4e1f29b8e614637d73c331e4">handshake_finish_vfunc</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp; result)</td></tr>
<tr class="separator:aeef4191d4e1f29b8e614637d73c331e4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGio_1_1IOStream"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGio_1_1IOStream')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classGio_1_1IOStream.html">Gio::IOStream</a></td></tr>
<tr class="memitem:a1257d3a0df6edf25cf1088e4be7144e2 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a1257d3a0df6edf25cf1088e4be7144e2">~IOStream</a> ()</td></tr>
<tr class="separator:a1257d3a0df6edf25cf1088e4be7144e2 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e8d13f8095555cecbe0d59f1542893f inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">GIOStream*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a6e8d13f8095555cecbe0d59f1542893f">gobj</a> ()</td></tr>
<tr class="memdesc:a6e8d13f8095555cecbe0d59f1542893f inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a6e8d13f8095555cecbe0d59f1542893f">More...</a><br /></td></tr>
<tr class="separator:a6e8d13f8095555cecbe0d59f1542893f inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a94eb81fa811399ece0ef743cd9d178ae inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">const GIOStream*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a94eb81fa811399ece0ef743cd9d178ae">gobj</a> () const </td></tr>
<tr class="memdesc:a94eb81fa811399ece0ef743cd9d178ae inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a94eb81fa811399ece0ef743cd9d178ae">More...</a><br /></td></tr>
<tr class="separator:a94eb81fa811399ece0ef743cd9d178ae inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a632594c5b02e0311448e79f6d495c65a inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">GIOStream*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a632594c5b02e0311448e79f6d495c65a">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a632594c5b02e0311448e79f6d495c65a inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.  <a href="#a632594c5b02e0311448e79f6d495c65a">More...</a><br /></td></tr>
<tr class="separator:a632594c5b02e0311448e79f6d495c65a inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43e681134d2fd80d3c88ebc79fae1eae inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a43e681134d2fd80d3c88ebc79fae1eae">splice_async</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1IOStream.html">IOStream</a> &gt;&amp; stream2, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable, <a class="el" href="group__giommEnums.html#ga753fc539949f2db7d1114d7ebd5b45b7">IOStreamSpliceFlags</a> flags=<a class="el" href="namespaceGio.html#ga753fc539949f2db7d1114d7ebd5b45b7a72d9ff1d41beeda3a353d288067c1a89">Gio::IO_STREAM_SPLICE_NONE</a>, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a43e681134d2fd80d3c88ebc79fae1eae inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asyncronously splice the output stream to the input stream of <em>stream2</em>, and splice the output stream of <em>stream2</em> to the input stream of this stream.  <a href="#a43e681134d2fd80d3c88ebc79fae1eae">More...</a><br /></td></tr>
<tr class="separator:a43e681134d2fd80d3c88ebc79fae1eae inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad883aab2d96422b0916befd71b73616e inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#ad883aab2d96422b0916befd71b73616e">splice_async</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1IOStream.html">IOStream</a> &gt;&amp; stream2, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, <a class="el" href="group__giommEnums.html#ga753fc539949f2db7d1114d7ebd5b45b7">IOStreamSpliceFlags</a> flags=<a class="el" href="namespaceGio.html#ga753fc539949f2db7d1114d7ebd5b45b7a72d9ff1d41beeda3a353d288067c1a89">Gio::IO_STREAM_SPLICE_NONE</a>, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:ad883aab2d96422b0916befd71b73616e inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">A non-cancellable version of <a class="el" href="classGio_1_1IOStream.html#a43e681134d2fd80d3c88ebc79fae1eae" title="Asyncronously splice the output stream to the input stream of stream2, and splice the output stream o...">splice_async()</a>.  <a href="#ad883aab2d96422b0916befd71b73616e">More...</a><br /></td></tr>
<tr class="separator:ad883aab2d96422b0916befd71b73616e inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afab74f0f339afb505556f6cb8b8c2b45 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1InputStream.html">InputStream</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#afab74f0f339afb505556f6cb8b8c2b45">get_input_stream</a> ()</td></tr>
<tr class="memdesc:afab74f0f339afb505556f6cb8b8c2b45 inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the input stream for this object.  <a href="#afab74f0f339afb505556f6cb8b8c2b45">More...</a><br /></td></tr>
<tr class="separator:afab74f0f339afb505556f6cb8b8c2b45 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acdea8fc29d817070fa9cca124f398930 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1OutputStream.html">OutputStream</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#acdea8fc29d817070fa9cca124f398930">get_output_stream</a> ()</td></tr>
<tr class="memdesc:acdea8fc29d817070fa9cca124f398930 inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the output stream for this object.  <a href="#acdea8fc29d817070fa9cca124f398930">More...</a><br /></td></tr>
<tr class="separator:acdea8fc29d817070fa9cca124f398930 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae22ea1e4e3cd6db48b5e012f35a2306d inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#ae22ea1e4e3cd6db48b5e012f35a2306d">close</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable)</td></tr>
<tr class="memdesc:ae22ea1e4e3cd6db48b5e012f35a2306d inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Closes the stream, releasing resources related to it.  <a href="#ae22ea1e4e3cd6db48b5e012f35a2306d">More...</a><br /></td></tr>
<tr class="separator:ae22ea1e4e3cd6db48b5e012f35a2306d inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d9c63eb525827d27f897d6823f719a8 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a7d9c63eb525827d27f897d6823f719a8">close</a> ()</td></tr>
<tr class="memdesc:a7d9c63eb525827d27f897d6823f719a8 inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="el" href="classGio_1_1IOStream.html#a7d9c63eb525827d27f897d6823f719a8" title="A close() convenience overload. ">close()</a> convenience overload.  <a href="#a7d9c63eb525827d27f897d6823f719a8">More...</a><br /></td></tr>
<tr class="separator:a7d9c63eb525827d27f897d6823f719a8 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a289fe0ef58e44117952a2e01985afdd7 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a289fe0ef58e44117952a2e01985afdd7">close_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp; cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="separator:a289fe0ef58e44117952a2e01985afdd7 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41451e389068b3a61245b43695186ee6 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a41451e389068b3a61245b43695186ee6">close_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp; slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="separator:a41451e389068b3a61245b43695186ee6 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a205a044f155178460336bd6efd05554c inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a205a044f155178460336bd6efd05554c">close_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp; result)</td></tr>
<tr class="memdesc:a205a044f155178460336bd6efd05554c inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Closes a stream.  <a href="#a205a044f155178460336bd6efd05554c">More...</a><br /></td></tr>
<tr class="separator:a205a044f155178460336bd6efd05554c inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a32d887d5d205566fe1cdfd0bf4176a8d inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a32d887d5d205566fe1cdfd0bf4176a8d">is_closed</a> () const </td></tr>
<tr class="memdesc:a32d887d5d205566fe1cdfd0bf4176a8d inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks if a stream is closed.  <a href="#a32d887d5d205566fe1cdfd0bf4176a8d">More...</a><br /></td></tr>
<tr class="separator:a32d887d5d205566fe1cdfd0bf4176a8d inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afecb3079c5a4adf9fe186b4a44923da3 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#afecb3079c5a4adf9fe186b4a44923da3">has_pending</a> () const </td></tr>
<tr class="memdesc:afecb3079c5a4adf9fe186b4a44923da3 inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks if a stream has pending actions.  <a href="#afecb3079c5a4adf9fe186b4a44923da3">More...</a><br /></td></tr>
<tr class="separator:afecb3079c5a4adf9fe186b4a44923da3 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7217e0c7ef1659a8b293a81e5b2e95e2 inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a7217e0c7ef1659a8b293a81e5b2e95e2">set_pending</a> ()</td></tr>
<tr class="memdesc:a7217e0c7ef1659a8b293a81e5b2e95e2 inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets <em>stream</em> to have actions pending.  <a href="#a7217e0c7ef1659a8b293a81e5b2e95e2">More...</a><br /></td></tr>
<tr class="separator:a7217e0c7ef1659a8b293a81e5b2e95e2 inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac15dc0ec5596a9bb5ee174ea70a2b59d inherit pub_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#ac15dc0ec5596a9bb5ee174ea70a2b59d">clear_pending</a> ()</td></tr>
<tr class="memdesc:ac15dc0ec5596a9bb5ee174ea70a2b59d inherit pub_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears the pending flag on <em>stream</em>.  <a href="#ac15dc0ec5596a9bb5ee174ea70a2b59d">More...</a><br /></td></tr>
<tr class="separator:ac15dc0ec5596a9bb5ee174ea70a2b59d inherit pub_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>&amp; key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>&amp; key, void* data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>&amp; key, void* data, <a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>&amp; quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>&amp; quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, const <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp; value)</td></tr>
<tr class="memdesc:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead.  <a href="#aab599d3eec4b4a9ddc95ccdc6100053d">More...</a><br /></td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp; value) const </td></tr>
<tr class="memdesc:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead.  <a href="#a5e30750441b92f0246c9d4ece95fc8a0">More...</a><br /></td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template&lt;class PropertyType &gt; </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, const PropertyType&amp; value)</td></tr>
<tr class="memdesc:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead.  <a href="#ad37844f7ea2c0091a22d011e04c48820">More...</a><br /></td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template&lt;class PropertyType &gt; </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, PropertyType&amp; value) const </td></tr>
<tr class="memdesc:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead.  <a href="#a5f894c9c36ad391fdc85552af67a8530">More...</a><br /></td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt; void &gt;&amp; slot)</td></tr>
<tr class="memdesc:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API.  <a href="#adc6c1e8f094275114d6e2c3ef3a33f98">More...</a><br /></td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>&amp; property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt; void &gt;&amp; slot)</td></tr>
<tr class="memdesc:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API.  <a href="#a896d7773c00bd2dcd310c861282ee8d1">More...</a><br /></td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="memdesc:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Increases the freeze count on object.  <a href="#a6e9e13b75f116c20212d318204ce8ea3">More...</a><br /></td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="memdesc:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reverts the effect of a previous call to <a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3" title="Increases the freeze count on object. ">freeze_notify()</a>.  <a href="#a1bd8ea7bd8c4084ade6b3c27dddf06a4">More...</a><br /></td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="memdesc:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Increment the reference count for this object.  <a href="#a896a8a5db20043ea82956e3ef4b9c4ae">More...</a><br /></td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="memdesc:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decrement the reference count for this object.  <a href="#a3234b8ffb2a35b927e2978c8f3bfbfe3">More...</a><br /></td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="memdesc:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a4c6efc18be8cb9c56e58fc0bd20fafbe">More...</a><br /></td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="memdesc:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a778a94181132976bbfb0519793f3b32e">More...</a><br /></td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="memdesc:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">Give a ref-ed copy to someone. Use for direct struct access.  <a href="#a9b2a5eb93102f1849e5419016e22a15f">More...</a><br /></td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a7cf79e95463df31be51b60c7220c38bb"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a7cf79e95463df31be51b60c7220c38bb">get_type</a> ()</td></tr>
<tr class="memdesc:a7cf79e95463df31be51b60c7220c38bb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system.  <a href="#a7cf79e95463df31be51b60c7220c38bb">More...</a><br /></td></tr>
<tr class="separator:a7cf79e95463df31be51b60c7220c38bb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classGio_1_1IOStream"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGio_1_1IOStream')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classGio_1_1IOStream.html">Gio::IOStream</a></td></tr>
<tr class="memitem:afc95fae98d93047a351166770a19732e inherit pub_static_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#afc95fae98d93047a351166770a19732e">get_type</a> ()</td></tr>
<tr class="memdesc:afc95fae98d93047a351166770a19732e inherit pub_static_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system.  <a href="#afc95fae98d93047a351166770a19732e">More...</a><br /></td></tr>
<tr class="separator:afc95fae98d93047a351166770a19732e inherit pub_static_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a75fe59f3909d44e704dbc6684e0b368e inherit pub_static_methods_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a75fe59f3909d44e704dbc6684e0b368e">splice_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp; result)</td></tr>
<tr class="memdesc:a75fe59f3909d44e704dbc6684e0b368e inherit pub_static_methods_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">Finishes an asynchronous io stream splice operation.  <a href="#a75fe59f3909d44e704dbc6684e0b368e">More...</a><br /></td></tr>
<tr class="separator:a75fe59f3909d44e704dbc6684e0b368e inherit pub_static_methods_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a6b6db22117969cc97d5cb3aac8c94aaf"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a6b6db22117969cc97d5cb3aac8c94aaf">TlsConnection</a> ()</td></tr>
<tr class="separator:a6b6db22117969cc97d5cb3aac8c94aaf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a304409f5ffad261f31ee9bac45a52646"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#a304409f5ffad261f31ee9bac45a52646">on_accept_certificate</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp; peer_cert, <a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> errors)</td></tr>
<tr class="memdesc:a304409f5ffad261f31ee9bac45a52646"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">signal_accept_certificate()</a>.  <a href="#a304409f5ffad261f31ee9bac45a52646">More...</a><br /></td></tr>
<tr class="separator:a304409f5ffad261f31ee9bac45a52646"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams&amp; construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject* castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a> ()</td></tr>
<tr class="separator:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="memdesc:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">This default constructor is called implicitly from the constructor of user-derived classes, even if, for instance, Gtk::Button calls a different <a class="el" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. ">ObjectBase</a> constructor.  <a href="#a27d3451d9ca28d6a2f00838d7c56d545">More...</a><br /></td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char* custom_type_name)</td></tr>
<tr class="memdesc:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">A derived constructor always overrides this choice.  <a href="#ad4ef18214894c6874579313ab21d1018">More...</a><br /></td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a>&amp; custom_type_info)</td></tr>
<tr class="memdesc:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft">&#160;</td><td class="mdescRight">This constructor is a special feature to allow creation of derived types on the fly, without having to use g_object_new() manually.  <a href="#a3d59b4d85b0ee72a727e6b2e1b31a2ff">More...</a><br /></td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a> ()=0</td></tr>
<tr class="separator:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject* castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:abe30f094769dc5934bdff8f6d05ed3f2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsConnection.html">Gio::TlsConnection</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1TlsConnection.html#abe30f094769dc5934bdff8f6d05ed3f2">wrap</a> (GTlsConnection* object, bool take_copy=false)</td></tr>
<tr class="memdesc:abe30f094769dc5934bdff8f6d05ed3f2"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.  <a href="#abe30f094769dc5934bdff8f6d05ed3f2">More...</a><br /></td></tr>
<tr class="separator:abe30f094769dc5934bdff8f6d05ed3f2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header related_classGio_1_1IOStream"><td colspan="2" onclick="javascript:toggleInherit('related_classGio_1_1IOStream')"><img src="closed.png" alt="-"/>&#160;Related Functions inherited from <a class="el" href="classGio_1_1IOStream.html">Gio::IOStream</a></td></tr>
<tr class="memitem:a13101385680c3857e7027d78e1f6259a inherit related_classGio_1_1IOStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1IOStream.html">Gio::IOStream</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1IOStream.html#a13101385680c3857e7027d78e1f6259a">wrap</a> (GIOStream* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a13101385680c3857e7027d78e1f6259a inherit related_classGio_1_1IOStream"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.  <a href="#a13101385680c3857e7027d78e1f6259a">More...</a><br /></td></tr>
<tr class="separator:a13101385680c3857e7027d78e1f6259a inherit related_classGio_1_1IOStream"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header related_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('related_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Related Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGlib_1_1Object.html">Glib::Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject* object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> )(gpointer data)</td></tr>
<tr class="separator:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> - TLS connection type. </p>
<p><a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> is the base TLS connection class type, which wraps an <a class="el" href="classGio_1_1IOStream.html" title="IOStream - Base class for implementing read/write streams. ">IOStream</a> and provides TLS encryption on top of it. Its subclasses, <a class="el" href="classGio_1_1TlsClientConnection.html" title="TlsClientConnection - TLS client-side connection. ">TlsClientConnection</a> and <a class="el" href="classGio_1_1TlsServerConnection.html" title="TlsServerConnection - TLS server-side connection. ">TlsServerConnection</a>, implement client-side and server-side TLS, respectively. </p><dl class="since_2_36"><dt><b><a class="el" href="since_2_36.html#_since_2_36000030">Since glibmm 2.36:</a></b></dt><dd></dd></dl>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a7d5e5dbc0066cf098454003b65a16207"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gio::TlsConnection::~TlsConnection </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a6b6db22117969cc97d5cb3aac8c94aaf"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gio::TlsConnection::TlsConnection </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a56e06ceb75e2a006c3460e771a3f9711"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::emit_accept_certificate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>peer_cert</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a>&#160;</td>
          <td class="paramname"><em>errors</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Used by <a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> implementations to emit the <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a> signal. </p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000227">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">peer_cert</td><td>The peer's <a class="el" href="classGio_1_1TlsCertificate.html" title="TlsCertificate - TLS certificate. ">TlsCertificate</a>. </td></tr>
    <tr><td class="paramname">errors</td><td>The problems with <em>peer_cert</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if one of the signal handlers has returned <code>true</code> to accept <em>peer_cert</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="a09c073fa67f5a6c57227ab3b9897599a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; Gio::TlsConnection::get_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets <em>conn's</em> certificate, as set by g_tls_connection_set_certificate(). </p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000215">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> certificate, or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="a559d5812b40763598293532dfdb3cb6f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; Gio::TlsConnection::get_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets <em>conn's</em> certificate, as set by g_tls_connection_set_certificate(). </p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000216">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> certificate, or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="a41ccee6cf03993882901d7c4078a9837"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a>&gt; Gio::TlsConnection::get_database </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets the certificate database that <em>conn</em> uses to verify peer certificates. </p>
<p>See g_tls_connection_set_database().</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000041">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The certificate database that <em>conn</em> uses or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="aa1e8bf85c98d0a8d8a44e204a8775fca"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a>&gt; Gio::TlsConnection::get_database </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets the certificate database that <em>conn</em> uses to verify peer certificates. </p>
<p>See g_tls_connection_set_database().</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000042">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The certificate database that <em>conn</em> uses or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="a05d31ec8b010650a1a6ec40710e77e45"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a>&gt; Gio::TlsConnection::get_interaction </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the object that will be used to interact with the user. </p>
<p>It will be used for things like prompting the user for passwords. If <code>0</code> is returned, then no user interaction will occur for this connection.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000044">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The interaction object. </dd></dl>

</div>
</div>
<a class="anchor" id="a113a17afb6045c82fb148da0cb628bad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a>&gt; Gio::TlsConnection::get_interaction </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the object that will be used to interact with the user. </p>
<p>It will be used for things like prompting the user for passwords. If <code>0</code> is returned, then no user interaction will occur for this connection.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000045">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The interaction object. </dd></dl>

</div>
</div>
<a class="anchor" id="a949f32e398a0db3ff11a1ca064d0f42d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; Gio::TlsConnection::get_peer_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets <em>conn's</em> peer's certificate after the handshake has completed. </p>
<p>(It is not set during the emission of <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a>.)</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000217">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> peer's certificate, or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="a4f8e34d8fea388ad83592ca49c72c7ea"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; Gio::TlsConnection::get_peer_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets <em>conn's</em> peer's certificate after the handshake has completed. </p>
<p>(It is not set during the emission of <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a>.)</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000218">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> peer's certificate, or <code>0</code>. </dd></dl>

</div>
</div>
<a class="anchor" id="a86f8b024dd438ea3a433711b7a7e4724"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> Gio::TlsConnection::get_peer_certificate_errors </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets the errors associated with validating <em>conn's</em> peer's certificate, after the handshake has completed. </p>
<p>(It is not set during the emission of <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a>.)</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000219">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> peer's certificate errors. </dd></dl>

</div>
</div>
<a class="anchor" id="a2fbc0f291ab3c8f7f003f5902743199c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> Gio::TlsConnection::get_rehandshake_mode </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets <em>conn</em> rehandshaking mode. </p>
<p>See g_tls_connection_set_rehandshake_mode() for details.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000223">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><em>conn's</em> rehandshaking mode. </dd></dl>

</div>
</div>
<a class="anchor" id="a37bdc0331982e6b823603a61f9099bac"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::get_require_close_notify </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tests whether or not <em>conn</em> expects a proper TLS close notification when the connection is closed. </p>
<p>See g_tls_connection_set_require_close_notify() for details.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000221">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>conn</em> requires a proper TLS close notification. </dd></dl>

</div>
</div>
<a class="anchor" id="a7cf79e95463df31be51b60c7220c38bb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static GType Gio::TlsConnection::get_type </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the GType for this class, for use with the underlying GObject type system. </p>

</div>
</div>
<a class="anchor" id="ac41da72a42636c8110b45c62f8d57dcc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::get_use_system_certdb </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets whether <em>conn</em> uses the system certificate database to verify peer certificates. </p>
<p>See g_tls_connection_set_use_system_certdb().</p>
<p>Deprecated: 2.30: Use g_tls_connection_get_database() instead</p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000059">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGio_1_1TlsConnection.html#a41ccee6cf03993882901d7c4078a9837" title="Gets the certificate database that conn uses to verify peer certificates. ">get_database()</a> instead.</dd></dl>
<dl class="section return"><dt>Returns</dt><dd>Whether <em>conn</em> uses the system certificate database. </dd></dl>

</div>
</div>
<a class="anchor" id="ae513dda3f0487a37e1875c1fa3cb34ab"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">GTlsConnection* Gio::TlsConnection::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Provides access to the underlying C GObject. </p>

</div>
</div>
<a class="anchor" id="a3e24f1584af4fb572c48fff69538e2e2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const GTlsConnection* Gio::TlsConnection::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Provides access to the underlying C GObject. </p>

</div>
</div>
<a class="anchor" id="a4a94b2d51c0a2b977033525d2bf237d1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GTlsConnection* Gio::TlsConnection::gobj_copy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>

</div>
</div>
<a class="anchor" id="a09df03551eb0a51a9e27a69888e21eb9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::handshake </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>cancellable</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Attempts a TLS handshake on <em>conn</em>. </p>
<p>On the client side, it is never necessary to call this method; although the connection needs to perform a handshake after connecting (or after sending a "STARTTLS"-type command) and may need to rehandshake later if the server requests it, <a class="el" href="classGio_1_1TlsConnection.html" title="TlsConnection - TLS connection type. ">TlsConnection</a> will handle this for you automatically when you try to send or receive data on the connection. However, you can call g_tls_connection_handshake() manually if you want to know for sure whether the initial handshake succeeded or failed (as opposed to just immediately trying to write to <em>conn's</em> output stream, in which case if it fails, it may not be possible to tell if it failed before or after completing the handshake).</p>
<p>Likewise, on the server side, although a handshake is necessary at the beginning of the communication, you do not need to call this function explicitly unless you want clearer error reporting. However, you may call g_tls_connection_handshake() later on to renegotiate parameters (encryption methods, etc) with the client.</p>
<p>TlsConnection::accept_certificate may be emitted during the handshake.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000224">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">cancellable</td><td>A <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a>, or <code>0</code>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Success or failure. </dd></dl>

</div>
</div>
<a class="anchor" id="af21398df0db2c262d85f0c6e53490361"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::handshake </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A <a class="el" href="classGio_1_1TlsConnection.html#af21398df0db2c262d85f0c6e53490361" title="A handshake() convenience overload. ">handshake()</a> convenience overload. </p>

</div>
</div>
<a class="anchor" id="aa526566be787e541f06aa9861449554e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::handshake_async </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp;&#160;</td>
          <td class="paramname"><em>slot</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>cancellable</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>io_priority</em> = <code><a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Asynchronously performs a TLS handshake on <em>conn</em>. </p>
<p>See g_tls_connection_handshake() for more information.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000225">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">io_priority</td><td>The [I/O priority][io-priority] of the request. </td></tr>
    <tr><td class="paramname">cancellable</td><td>A <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a>, or <code>0</code>. </td></tr>
    <tr><td class="paramname">slot</td><td>Callback to call when the handshake is complete. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab364be698a273fe9f2caaab24c7a66c7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::handshake_async </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp;&#160;</td>
          <td class="paramname"><em>slot</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>io_priority</em> = <code><a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A <a class="el" href="classGio_1_1TlsConnection.html#aa526566be787e541f06aa9861449554e" title="Asynchronously performs a TLS handshake on conn. ">handshake_async()</a> convenience overload. </p>

</div>
</div>
<a class="anchor" id="aeb5004a32047d0aebf418e8fc4cdf37a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gio::TlsConnection::handshake_async_vfunc </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>&amp;&#160;</td>
          <td class="paramname"><em>slot</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>cancellable</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>io_priority</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="abd49faefa24f86b5f5f02248eb8d1ca4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gio::TlsConnection::handshake_finish </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>result</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Finish an asynchronous TLS handshake operation. </p>
<p>See g_tls_connection_handshake() for more information.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000226">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">result</td><td>A <a class="el" href="classGio_1_1AsyncResult.html" title="Provides a base class for implementing asynchronous function results. ">AsyncResult</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> on success, <code>false</code> on failure, in which case <em>error</em> will be set. </dd></dl>

</div>
</div>
<a class="anchor" id="aeef4191d4e1f29b8e614637d73c331e4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool Gio::TlsConnection::handshake_finish_vfunc </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>result</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname">Glib::Error.</td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a301aad50aa459b546016366bea097f5c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool Gio::TlsConnection::handshake_vfunc </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>cancellable</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname">Glib::Error.</td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a304409f5ffad261f31ee9bac45a52646"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool Gio::TlsConnection::on_accept_certificate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>peer_cert</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a>&#160;</td>
          <td class="paramname"><em>errors</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">signal_accept_certificate()</a>. </p>

</div>
</div>
<a class="anchor" id="aa9564b05470eccdf6b238133de0202d7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1IOStream.html">IOStream</a>&gt; &gt; Gio::TlsConnection::property_base_io_stream </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The GIOStream that the connection wraps. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a04f7860540d388948206654f89940d22"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; &gt; Gio::TlsConnection::property_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The connection's certificate. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a73d45b333fd4cce39e713a3dc814d985"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; &gt; Gio::TlsConnection::property_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The connection's certificate. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a313d4c310935af531eff29c95b24bcf2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a>&gt; &gt; Gio::TlsConnection::property_database </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Certificate database to use for looking up or verifying certificates. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a818a49c90b2f28775ea47b328914302d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a>&gt; &gt; Gio::TlsConnection::property_database </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Certificate database to use for looking up or verifying certificates. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a1626c66d68bd76754f8b586fd7e5a0e2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a>&gt; &gt; Gio::TlsConnection::property_interaction </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Optional object for user interaction. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a20d303e1a89411cba4d641ce2b759895"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a>&gt; &gt; Gio::TlsConnection::property_interaction </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Optional object for user interaction. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a62062eb1d9a0d08bf4addd269a21b5ff"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt; &gt; Gio::TlsConnection::property_peer_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The connection's peer's certificate. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a1a50685f3f382e545060beec92de5092"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> &gt; Gio::TlsConnection::property_peer_certificate_errors </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Errors found with the peer's certificate. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ae1ed594a9d690b1e5a9d4be9cb6b027a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> &gt; Gio::TlsConnection::property_rehandshake_mode </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>When to allow rehandshaking. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a55e1427c9d1dc8cc49ea26a7dd907baa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a> &gt; Gio::TlsConnection::property_rehandshake_mode </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>When to allow rehandshaking. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="afa8b1acb49b52aafd8d6a9f38edf425c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt; Gio::TlsConnection::property_require_close_notify </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to require proper TLS close notification. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a293fafd9326a5d7c4cd2cb623f4450f5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt; Gio::TlsConnection::property_require_close_notify </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to require proper TLS close notification. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a2c08e6c8020b25ba4a1001788537839d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt; Gio::TlsConnection::property_use_system_certdb </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to verify peer certificates against the system certificate database. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000060">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGio_1_1TlsConnection.html#a313d4c310935af531eff29c95b24bcf2" title="Certificate database to use for looking up or verifying certificates. ">property_database()</a> instead.</dd></dl>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ab95b5bbf963f80c969bd3516fc60c922"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt; Gio::TlsConnection::property_use_system_certdb </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to verify peer certificates against the system certificate database. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000061">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGio_1_1TlsConnection.html#a313d4c310935af531eff29c95b24bcf2" title="Certificate database to use for looking up or verifying certificates. ">property_database()</a> instead.</dd></dl>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a974de86a9b7dc775a6761b5f7f94d45d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_certificate </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>certificate</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This sets the certificate that <em>conn</em> will present to its peer during the TLS handshake. </p>
<p>For a <a class="el" href="classGio_1_1TlsServerConnection.html" title="TlsServerConnection - TLS server-side connection. ">TlsServerConnection</a>, it is mandatory to set this, and that will normally be done at construct time.</p>
<p>For a <a class="el" href="classGio_1_1TlsClientConnection.html" title="TlsClientConnection - TLS client-side connection. ">TlsClientConnection</a>, this is optional. If a handshake fails with TLS_ERROR_CERTIFICATE_REQUIRED, that means that the server requires a certificate, and if you try connecting again, you should call this method first. You can call g_tls_client_connection_get_accepted_cas() on the failed connection to get a list of Certificate Authorities that the server will accept certificates from.</p>
<p>(It is also possible that a server will allow the connection with or without a certificate; in that case, if you don't provide a certificate, you can tell that the server requested one by the fact that g_tls_client_connection_get_accepted_cas() will return non-<code>0</code>.)</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000214">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">certificate</td><td>The certificate to use for <em>conn</em>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a804e8d1f55047648954afa68b4f41573"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_database </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsDatabase.html">TlsDatabase</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>database</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the certificate database that is used to verify peer certificates. </p>
<p>This is set to the default database by default. See g_tls_backend_get_default_database(). If set to <code>0</code>, then peer certificate validation will always set the TLS_CERTIFICATE_UNKNOWN_CA error (meaning <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a> will always be emitted on client-side connections, unless that bit is not set in <a class="el" href="classGio_1_1TlsClientConnection.html#af82fabf3d65d03dc34f578e9267307f4" title="What certificate validation to perform. ">TlsClientConnection::property_validation_flags()</a>).</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000043">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">database</td><td>A <a class="el" href="classGio_1_1TlsDatabase.html" title="TlsDatabase - TLS database type. ">TlsDatabase</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3c655d74f49d3d6e3ee5fd76f2f4cee3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_interaction </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsInteraction.html">TlsInteraction</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>interaction</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the object that will be used to interact with the user. </p>
<p>It will be used for things like prompting the user for passwords.</p>
<p>The <em>interaction</em> argument will normally be a derived subclass of <a class="el" href="classGio_1_1TlsInteraction.html" title="TlsInteraction - Interaction with the user during TLS operations. ">TlsInteraction</a>. <code>0</code> can also be provided if no user interaction should occur for this connection.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000046">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">interaction</td><td>An interaction object, or <code>0</code>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a20ff315a64ffc0268843b103ea177ec1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_rehandshake_mode </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__giommEnums.html#ga9730680b829b7745e4f36c1540761f3f">TlsRehandshakeMode</a>&#160;</td>
          <td class="paramname"><em>mode</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets how <em>conn</em> behaves with respect to rehandshaking requests. </p>
<p>TLS_REHANDSHAKE_NEVER means that it will never agree to rehandshake after the initial handshake is complete. (For a client, this means it will refuse rehandshake requests from the server, and for a server, this means it will close the connection with an error if the client attempts to rehandshake.)</p>
<p>TLS_REHANDSHAKE_SAFELY means that the connection will allow a rehandshake only if the other end of the connection supports the TLS <code>renegotiation_info</code> extension. This is the default behavior, but means that rehandshaking will not work against older implementations that do not support that extension.</p>
<p>TLS_REHANDSHAKE_UNSAFELY means that the connection will allow rehandshaking even without the <code>renegotiation_info</code> extension. On the server side in particular, this is not recommended, since it leaves the server open to certain attacks. However, this mode is necessary if you need to allow renegotiation with older client software.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000222">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">mode</td><td>The rehandshaking mode. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac4f67ea320dfa95aa977230dafdc3a6e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_require_close_notify </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>require_close_notify</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets whether or not <em>conn</em> expects a proper TLS close notification before the connection is closed. </p>
<p>If this is <code>true</code> (the default), then <em>conn</em> will expect to receive a TLS close notification from its peer before the connection is closed, and will return a TLS_ERROR_EOF error if the connection is closed without proper notification (since this may indicate a network error, or man-in-the-middle attack).</p>
<p>In some protocols, the application will know whether or not the connection was closed cleanly based on application-level data (because the application-level data includes a length field, or is somehow self-delimiting); in this case, the close notify is redundant and sometimes omitted. (TLS 1.1 explicitly allows this; in TLS 1.0 it is technically an error, but often done anyway.) You can use g_tls_connection_set_require_close_notify() to tell <em>conn</em> to allow an "unannounced" connection close, in which case the close will show up as a 0-length read, as in a non-TLS <a class="el" href="classGio_1_1SocketConnection.html" title="A socket connection. ">SocketConnection</a>, and it is up to the application to check that the data has been fully received.</p>
<p>Note that this only affects the behavior when the peer closes the connection; when the application calls g_io_stream_close() itself on <em>conn</em>, this will send a close notification regardless of the setting of this property. If you explicitly want to do an unclean close, you can close <em>conn's</em> <a class="el" href="classGio_1_1TlsConnection.html#aa9564b05470eccdf6b238133de0202d7" title="The GIOStream that the connection wraps. ">TlsConnection::property_base_io_stream()</a> rather than closing <em>conn</em> itself.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000220">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">require_close_notify</td><td>Whether or not to require close notification. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0e0a8bb62da8f2e949618dab9628d969"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gio::TlsConnection::set_use_system_certdb </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>use_system_certdb</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets whether <em>conn</em> uses the system certificate database to verify peer certificates. </p>
<p>This is <code>true</code> by default. If set to <code>false</code>, then peer certificate validation will always set the TLS_CERTIFICATE_UNKNOWN_CA error (meaning <a class="el" href="classGio_1_1TlsConnection.html#a23f7657a08ab7736cc722bc93fedcbba">TlsConnection::signal_accept_certificate()</a> will always be emitted on client-side connections, unless that bit is not set in <a class="el" href="classGio_1_1TlsClientConnection.html#af82fabf3d65d03dc34f578e9267307f4" title="What certificate validation to perform. ">TlsClientConnection::property_validation_flags()</a>).</p>
<p>Deprecated: 2.30: Use g_tls_connection_set_database() instead</p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000058">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGio_1_1TlsConnection.html#a804e8d1f55047648954afa68b4f41573" title="Sets the certificate database that is used to verify peer certificates. ">set_database()</a> instead.</dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">use_system_certdb</td><td>Whether to use the system certificate database. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a23f7657a08ab7736cc722bc93fedcbba"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; bool,const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGio_1_1TlsCertificate.html">TlsCertificate</a>&gt;&amp;,<a class="el" href="group__giommEnums.html#gac96df88bc70e763045de6aa47e87039a">TlsCertificateFlags</a> &gt; Gio::TlsConnection::signal_accept_certificate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>bool on_my_accept_certificate(const Glib::RefPtr&lt;const TlsCertificate&gt;&amp; peer_cert, TlsCertificateFlags errors)</code></dd></dl>
<p>Emitted during the TLS handshake after the peer certificate has been received. You can examine <em>peer_cert's</em> certification path by calling g_tls_certificate_get_issuer() on it.</p>
<p>For a client-side connection, <em>peer_cert</em> is the server's certificate, and the signal will only be emitted if the certificate was not acceptable according to <em>conn's</em> TlsClientConnection::property_validation()_flags. If you would like the certificate to be accepted despite <em>errors</em>, return <code>true</code> from the signal handler. Otherwise, if no handler accepts the certificate, the handshake will fail with TLS_ERROR_BAD_CERTIFICATE.</p>
<p>For a server-side connection, <em>peer_cert</em> is the certificate presented by the client, if this was requested via the server's TlsServerConnection::property_authentication()_mode. On the server side, the signal is always emitted when the client presents a certificate, and the certificate will only be accepted if a handler returns <code>true</code>.</p>
<p>Note that if this signal is emitted as part of asynchronous I/O in the main thread, then you should not attempt to interact with the user before returning from the signal handler. If you want to let the user decide whether or not to accept the certificate, you would have to return <code>false</code> from the signal handler on the first attempt, and then after the connection attempt returns a TLS_ERROR_HANDSHAKE, you can interact with the user, and if the user decides to accept the certificate, remember that fact, create a new connection, and return <code>true</code> from the signal handler the next time.</p>
<p>If you are doing I/O in another thread, you do not need to worry about this, and can simply block in the signal handler until the UI thread returns an answer.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000228">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">peer_cert</td><td>The peer's <a class="el" href="classGio_1_1TlsCertificate.html" title="TlsCertificate - TLS certificate. ">TlsCertificate</a>. </td></tr>
    <tr><td class="paramname">errors</td><td>The problems with <em>peer_cert</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> to accept <em>peer_cert</em> (which will also immediately end the signal emission). <code>false</code> to allow the signal emission to continue, which will cause the handshake to fail if no one else overrides it. </dd></dl>

</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="abe30f094769dc5934bdff8f6d05ed3f2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGio_1_1TlsConnection.html">Gio::TlsConnection</a> &gt; wrap </td>
          <td>(</td>
          <td class="paramtype">GTlsConnection *&#160;</td>
          <td class="paramname"><em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>take_copy</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">object</td><td>The C instance. </td></tr>
    <tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>

</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Sep 22 2014 21:38:32 for glibmm by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
</body>
</html>