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
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
|
http://suprem.sec.samsung.net/jira/browse/CONPRO-1105
commit_info_2017-10-11.txt
commit_id: 2098cc76ea826cf86dddefe0b3a4833ed98f2368
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1102
commit_info_2017-10-04-rev1.txt
commit_id: 43892977769486782b5b0475cc0343c875a4dca1
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1098
commit_info_2017-09-27-rev1.txt
commit_id: c5a00fbacec687068f446f44c076e6c27eb23357
cherrypick_cmd_id: 77aabf1039177545fc1aa822e6ef5e8347d6a0e8
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1088
commit_info_2017-09-20.txt
commit_id: 4328750e7e469bcee4d1f762c0e0d5d53cfadf35
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1082
commit_info_2017-09-13.txt
commit_id: b16a3d33bfd0affdecdd65e0bf0365b617ba0f7a
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1076
commit_info_2017-09-06.txt
commit_id: e6ec6fb1e64f582c8011d84a1419f5e8728364d1
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1069
commit_info_2017-08-30_rev1.txt
commit_id: e6ec6fb1e64f582c8011d84a1419f5e8728364d1
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1063
commit_info_2017-08-23_rev1.txt
commit_id: 0ed11c039b711fa056065f75f2bedb775039a954
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1059
commit_info_2017-08-16_rev1.txt
commit_id: 7c5cca3016e5e59b7a87d3a9500d3b3807015183
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1053
commit_info_2017-08-09_rev1.txt
commit_id: f58313fba7e09873fc32adadc6d991cfbaa83440
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
Rollback to snapshot(2017-07-19)
http://suprem.sec.samsung.net/jira/browse/CONPRO-1034
commit_info_2017-07-19_rev1.txt
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1047
commit_info_2017-08-02_rev1.txt
commit_id: b57dea28907435ec97a8be8ce5692794a2792db6
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1040
commit_info_2017-07-26_rev1.txt
commit_id: 7ed9ad2e7e080d26ca9654f3c333ec003a00cadf
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1034
commit_info_2017-07-19_rev1.txt
commit_id: 78570f8488bbf239edbdc40e0ab8d6601ca11a95
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1030
commit_info_2017-07-12_rev1.txt
commit_id: 4cde94f242ab1e9fcdd5ee1f14387e5007390cc5
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1024
commit_info_2017-07-05_rev1.txt
commit_id: fc53dac7398fdb133a983bba4f97523946557c8a
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1020
commit_info_2017-06-28_rev2.txt
commit_id: 8cc6f017b9917d423af006be856ac8c8fe34c40f
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
cherrypick_cmd_id: 873bef7216f1d84580fcf4ba50d22b11b4e0cdc1
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-1004
commit_info_2017-06-21.txt
commit_id: 862669776b11d359f1f45af30a110f5f785efa64
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-998
commit_info_2017-06-14_rev1.txt
commit_id: 8855cc4b03c72a447bd1b4dc24035ec3a8afaab6
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-995
commit_info_2017-06-07_rev1.txt
commit_id: ef565cb617b7f18a47d301b4b2fbf0cc629c9853
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
cherrypick_cmd_id: 14eca13063fbac470942a2b5168691b51b559e97
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-987
commit_info_2017-05-31_rev2.txt
commit_id: 569fd47d478292837e32d2d2d06527cca8dac7e3
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
cherrypick_cmd_id: 171e4ec999b8a2eebd09f694b720bebb17cc9bad
cherrypick_cmd_id: 14eca13063fbac470942a2b5168691b51b559e97
cherrypick_cmd_id: 0ebc8e209ae8d5429b9ab1b5ac34c2c452cc86fe
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-982
commit_info_2017-05-24_rev2.txt
commit_id: 3d998bf37d7e978706d6b02d4f9332e4508ee3c3
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
cherrypick_cmd_id: 171e4ec999b8a2eebd09f694b720bebb17cc9bad
cherrypick_cmd_id: 14eca13063fbac470942a2b5168691b51b559e97
cherrypick_cmd_id: 4db562a5e5e60bd63d0c68c171727d8664cf8741
cherrypick_cmd_id: 5a13f47f7ac87014ea9700998c04a875d216ea54
cherrypick_cmd_id: 9a70eb7489e77628f24e964c9043f3ff178387b0
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-976
commit_info_2017-05-17_rev6.txt
commit_id: a90cea54ea2ab138144643d705f24ed6861ec492
cherrypick_cmd_id: e3232d8f70b61d90c1158c441b3a9142c21300c0
cherrypick_cmd_id: b5f7b82e60fb89e389d3568da0ba1fc563c596cd
cherrypick_cmd_id: 600c47968e1bfa66f24dddc3b109064e619e3136
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
cherrypick_cmd_id: 171e4ec999b8a2eebd09f694b720bebb17cc9bad
----------------------------------------------------------------------------------------------------------------------------------
[CONPRO-960] Manage the max connection counts to limit the connection
git cherry-pick 11858d67a21ebb3aae40c0db44c73320eb90631f
----------------------------------------------------------------------------------------------------------------------------------
Arrange License for Tizen
cherrypick_cmd_id: 171e4ec999b8a2eebd09f694b720bebb17cc9bad
----------------------------------------------------------------------------------------------------------------------------------
Remove Test folder which is not being released
cherrypick_cmd_id: 26d93148d72600d0da47251ebd1104a7896e50c0
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-959
commit_info_2017-05-10.txt
commit_id: dee065f3bf813261ad20ee2412d3f90cb460e544
cherrypick_cmd_id: 3cd74277793fea3861ee64f0349e3c5b1a9d3dc9
cherrypick_cmd_id: 0211af585ae8a46b235ca6e077c64ebf7e3a1aec
cherrypick_cmd_id: 6cbacba58132f973f1990b162bf7f29b996bc7a5
cherrypick_cmd_id: c5aa01bea3faa9cd766dddca2fba82819a8abe17
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-943
commit_info_2017-04-25_rev1.txt
commit_id: 24e13856a6f9a774487f2ef1bf217c2864c0ad46
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/31/115231/5 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-933
commit_info_2017-04-19_rev2.txt
commit_id: 73af64330083b1ab39bd24847da5e90edca263de
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/08/114808/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/08/114808/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-913
commit_info_2017-04-12_rev5.txt
commit_id: 0e063c1c4ec6856b659d8025a02c200e3a896ce0
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/48/114248/3 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/81/111081/35 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/29/113729/18 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/64/114364/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/87/114287/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/24/114424/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-886
commit_info_2017-04-04_rev4.txt
commit_id: 8097da2ebdcb67ec66ea0ba21924730db8ff4372
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/64/113464/3 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/59/113759/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/61/113761/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/14/113414/3 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/84/113884/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-868
commit_info_2017-03-29_rev4.txt
commit_id: 30dbca27ce8d7ce04176548abb50dcd9fe5e86fe
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/112652/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/39/113239/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/40/113240/3 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-868
commit_info_2017-03-29_rev3.txt
commit_id: 30dbca27ce8d7ce04176548abb50dcd9fe5e86fe
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/65/113165/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/112652/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/39/113239/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/40/113240/3 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/89/113289/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-859
commit_info_2017-03-27_rev2.txt
commit_id: a2097190130c6f8d4a56098510ede82c57656e6b
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/70/112270/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/25/112925/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/35/113035/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/34/113034/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-850
commit_info_2017-03-23_rev2.txt
commit_id: 6205eb34033b9cd694c7d5bd7d47fd8c41592d83
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/77/112777/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-835
commit_info_2017-03-21_rev2.txt
commit_id: 6c9b5bc0a60b1cd44cb63efcabc8f98483670ddd
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/25/109025/17 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/08/112608/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-827
commit_info_2017-03-20_rev2.txt
commit_id: 853572b65722efc8d2c76b7c91065b0c66ddb3f0
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/86/111986/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/25/109025/17 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/55/112255/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/32/112332/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-819
commit_info_2017-03-16_rev2.txt
commit_id: c103e665941c961314736057e0eb5e54e3b8698e
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/86/111986/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/25/109025/17 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/112152/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/112095/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/111991/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-809
commit_info_2017-03-15_rev3.txt
commit_id: 2c0cac592851e97ea530b3e3512ef57110976980
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/45/111845/7 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/86/111986/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/98/111998/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-800
commit_info_2017-03-10_rev3.txt
commit_id: 9b4fe8ebc3aa1bfde2f49a073e1523fb721ed044
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/111238/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/111122/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/71/111471/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/51/111351/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/07/111507/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/10/111510/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/06/111506/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-786
commit_info_2017-03-08_rev4.txt
commit_id: 9039946c9e3f4029584d0c8b95f04e426bd240eb
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/111238/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/77/111277/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/02/111302/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/111122/3 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-775
commit_info_2017-03-06_rev1.txt
commit_id: 63e64a47a49b70c533f9826394127e2303bc9372
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/12 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/07/110507/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/64/110464/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-765
commit_info_2017-02-28_rev2.txt
commit_id: f53a371b56aea31a80f02a84aeba0f6a4e6b0754
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/9 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/11 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/3 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/07/110507/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-753
commit_info_2017-02-24_rev2.txt
commit_id: 7cd3cd0f125be6ec8a3550a017c3d2a15fce00db
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/8 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/07/110507/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/15/110515/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-743
commit_info_2017-02-22_rev1.txt
commit_id: 2df5bc8a5e32364132ac14b731cb6940ac8e1753
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/8 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/10 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
Fix a maximum size of wifi mode in easy setup
The maximum number of supported WiFi mode is increased to 10, sufficiently.
http://suprem.sec.samsung.net/gerrit/#/c/110335/
( manually merged for VD request, not cherry-picked )
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-733
commit_info_2017-02-17_rev6.txt
commit_id: da7d2ea8a3bd9aea8718a901664d0590c7b2bcb1
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/110299/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-733
commit_info_2017-02-17_rev5.txt
commit_id: da7d2ea8a3bd9aea8718a901664d0590c7b2bcb1
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/7 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/9 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/37/109437/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/74/110074/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/75/110075/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/110095/1 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/40/110140/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-724
commit_id: a5ccb864bd75587dcd91bf6f48a6f08319df65cf
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/7 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/8 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-713
commit_id: 353f2986ab916f89e0f5e2fa805c8920aa2cde14
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/7 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/6 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/11/109311/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/04/109304/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/08/109308/2 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
set only IP transport for vd request (2017-02-09)
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-700
commit_info_2017-02-08_rev2.txt
commit_id: d7e99e853046ed56a922c01e57732669a7234ead
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/7 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/109099/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/35/109135/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
set only IP transport for vd request (2017-02-06)
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-687
commit_info_2017-02-03_rev2.txt
commit_id: af77c0e8ece5da571b0e52efd60a1b04c5f19c9e
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/6 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/4 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/68/108768/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-674
commit_info_2017-01-31_rev3.txt
commit_id: 197da96f03e5edb412f7fb07af7554ff703dcd54
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/6 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/107538/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/107926/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/36/108436/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/19/107919/10 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/18/107918/8 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/23/107923/3 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-665
commit_info_2017-01-24_rev3.txt
commit_id: 038ef6c8afd5fa0b58d70d21528223976012a5ed
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/6 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106990/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106991/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/92/106992/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106993/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/106994/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106995/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/107538/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/107926/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/83/108083/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/61/108161/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-659
commit_info_2017-01-23_rev5.txt
commit_id: 5a2dad10bc8af7e1229f4a8718234cbe3478b60b
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/6 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106990/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106991/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/92/106992/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106993/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/106994/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106995/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/107538/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/107926/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/54/107954/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/15/108015/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-652
commit_info_2017-01-19_rev6.txt
commit_id: bec493c861e151e4cd0c30051b3f308bcffce0ed
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106990/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106991/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/92/106992/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106993/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/106994/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106995/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/38/107538/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/42/107642/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/88/107688/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107722/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/03/107803/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
disable BLE feature
- requested by IoTLab
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-635
commit_info_2017-01-16_rev2.txt
commit_id: 0dbfa732f613c2d9fa23034d0e9c35c6508b8071
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106990/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106991/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/92/106992/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106993/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/106994/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106995/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/107322/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-617
commit_info_2017-01-12_rev5.txt
commit_id: a0fa1b90b075ee3e5c500d3ce0f0f5572e35e429
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/105794/29 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/106322/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/05/106905/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/11/106911/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106990/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106991/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/92/106992/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106993/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/106994/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106995/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-584
commit_info_2017-01-09_rev12.txt
commit_id: dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/105794/23 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/69/106269/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/106322/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/55/106355/5 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/73/106373/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106395/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/28/106428/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/47/106447/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/106452/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/81/106581/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/82/106582/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106590/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106591/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106593/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/15/106615/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/106626/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/84/106684/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-462
commit_info_2016-12-16_rev2.txt
commit_id: dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/105794/23 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/69/106269/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/106322/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http:/commit_id: dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/99/104899/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/94/105794/23 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/69/106269/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/22/106322/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/55/106355/5 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/73/106373/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106395/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/28/106428/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/47/106447/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/106452/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/81/106581/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/82/106582/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106590/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106591/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106593/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/15/106615/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/106626/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/84/106684/1 && git cherry-pick FETCH_HEAD
change_set: (from commit fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668)
--------------------------------------------------------------------------------
Revision: dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4
User: jihwan.seo
Date: Mon Jan 09 12:45:04 KST 2017
Comment:
[SAMSUNG] stop BLE advertising for disconnection status.(tizen MCD, VD)
since advertising can be caused a big problem related battery consumption.
it should be stopped when it is not used.
Change-Id: Ibc92743fce56694f05af79d0a47ce06325c3237a
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_mcd.c dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4:fcb6143f3b28766f89c332b323159eb33a913116 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_vd.c dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4:fcb6143f3b28766f89c332b323159eb33a913116 null
--------------------------------------------------------------------------------
Revision: fcb6143f3b28766f89c332b323159eb33a913116
User: Chul Lee
Date: Mon Jan 09 10:52:46 KST 2017
Comment:
Update to include mbedtls library in stack's sample build
Change-Id: Ia94116ab121b4d04038cd3b4ded03b325378511f
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/stack/test/linux/SConscript fcb6143f3b28766f89c332b323159eb33a913116:c4f6d85cdabcab328e5f94d055eb36011939b52a null
--------------------------------------------------------------------------------
Revision: c4f6d85cdabcab328e5f94d055eb36011939b52a
User: h_w park
Date: Mon Jan 09 10:29:00 KST 2017
Comment:
Merge "Update to include mbedtls library in Secure build" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 891c5af03e821cb1f0aebf726a855d13dac17938
User: Jihun Ha
Date: Mon Jan 09 10:26:21 KST 2017
Comment:
Update to include mbedtls library in Secure build
Change-Id: I68daba29795455f2b03dafa91fc1137984feb25d
Signed-off-by: Jihun Ha <jihun.ha@samsung.com>
Modifications:
MODIFY service/easy-setup/sampleapp/enrollee/linux-samsung/SConscript 891c5af03e821cb1f0aebf726a855d13dac17938:7b6122f4c53f7172ede14163740e293092171ec9 null
MODIFY service/easy-setup/sampleapp/enrollee/linux/SConscript 891c5af03e821cb1f0aebf726a855d13dac17938:7b6122f4c53f7172ede14163740e293092171ec9 null
--------------------------------------------------------------------------------
Revision: 7497d53650f47b36d803d526bbb281810c0834cc
User: jihwan seo
Date: Mon Jan 09 10:16:02 KST 2017
Comment:
Merge "Send error response in case request msg type is unicast" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 3bfb0a407a1e9cb7270176d27dbf7a1bf216ce38
User: Jongmin Choi
Date: Mon Jan 09 09:31:16 KST 2017
Comment:
Modify CreateResetProfile() to preserve the original profile
CreateResetProfile() modified to preserve the original profile
created at first
Patch #1: Initial upload
Change-Id: I3420d83a8c8a8b17f947dd244bb03ce7926159bb
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/psinterface.c 3bfb0a407a1e9cb7270176d27dbf7a1bf216ce38:7b6122f4c53f7172ede14163740e293092171ec9 null
--------------------------------------------------------------------------------
Revision: 7b6122f4c53f7172ede14163740e293092171ec9
User: jaehong jo
Date: Mon Jan 09 08:12:47 KST 2017
Comment:
Merge "Revert "[IOT-1714]Add wifi.p2p connection status changed intent receiver"" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 2df361249fca0230c55473d2b430416ff5cb5836
User: jaehong jo
Date: Mon Jan 09 08:12:19 KST 2017
Comment:
Revert "[IOT-1714]Add wifi.p2p connection status changed intent receiver"
This reverts commit 58a3604b455ea16982e6f6de2b04118ff633edc8.
Change-Id: I926baf6e7113f77b6fb803de4492e99605855feb
Modifications:
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaIpInterface.java 2df361249fca0230c55473d2b430416ff5cb5836:58a3604b455ea16982e6f6de2b04118ff633edc8 null
--------------------------------------------------------------------------------
Revision: ed2ea1917298987eb384c6239b0e0724e2fa490b
User: jaehong jo
Date: Sat Jan 07 15:52:09 KST 2017
Comment:
Merge "To support start/stop LE advertising API for android" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 4a560587b670f95d594b2386f0768c9cb448f9c5
User: jihwan seo
Date: Sat Jan 07 15:28:50 KST 2017
Comment:
Merge "Revert "[SAMSUNG] temp pathc : replace MTU size with 514 byte"" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 872c8a18f8a2900aa3ddcda3e75a6dcdc9c1a917
User: jihwan seo
Date: Sat Jan 07 15:28:46 KST 2017
Comment:
Revert "[SAMSUNG] temp pathc : replace MTU size with 514 byte"
This reverts commit d00c6fec635e3cd3d1360ca48a0e097a47230cf9.
Change-Id: Id307b7550794c6c29c3931c409ff935be40b5281
Modifications:
MODIFY resource/csdk/connectivity/inc/cafragmentation.h 872c8a18f8a2900aa3ddcda3e75a6dcdc9c1a917:d00c6fec635e3cd3d1360ca48a0e097a47230cf9 null
--------------------------------------------------------------------------------
Revision: 951558a269828159a1c6e1d3e74a752960fc7dae
User: jihwan.seo
Date: Sat Jan 07 15:20:26 KST 2017
Comment:
To support start/stop LE advertising API for android
Change-Id: I3201e563cdd07bb84c38639f9a2b6743122b2385
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY android/android_api/base/jni/JniCaInterface.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaInterface.java 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/api/cautilinterface.h 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/inc/camanagerleinterface.h 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/src/camanager/bt_le_manager/android/caleconnectionmanager.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/src/cautilinterface.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
--------------------------------------------------------------------------------
Revision: 3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3
User: jihwan seo
Date: Sat Jan 07 12:44:17 KST 2017
Comment:
Merge "Updates for VD BLE support (Tizen TV) - Added calenwmonitor_vd.c" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: d4611ef24f131302fa08fe8a55ee6199a78d9bc9
User: js126 lee
Date: Fri Jan 06 18:46:14 KST 2017
Comment:
Merge "Modify SetupCipher() to support multiple ciphersuites" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 715f88dde7acc4878c6b1f30e5af0adba2aa6189
User: chuls lee
Date: Fri Jan 06 18:27:28 KST 2017
Comment:
Merge "Removed compiler warnings for security modules." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: b261d0d7c4483a6eb57d8cdb0336ed6b31fcbbfe
User: Jongmin Choi
Date: Fri Jan 06 18:25:24 KST 2017
Comment:
Modify SetupCipher() to support multiple ciphersuites
SetupCipher() modified to support multiple ciphersuites
Patch #1: initial upload
Change-Id: Ie61b4116e41c0845082eda9ca8ab9c859a1fc5b0
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c b261d0d7c4483a6eb57d8cdb0336ed6b31fcbbfe:54b3ab75572776e83c013765c3771749c6f22389 null
--------------------------------------------------------------------------------
Revision: 279da96989d40545fcf687835b03b8d49756944a
User: Jihun Ha
Date: Fri Jan 06 18:24:05 KST 2017
Comment:
Merge "Static Analysis(SVACE) issue fixes on Notification consumer." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 54b3ab75572776e83c013765c3771749c6f22389
User: jihwan seo
Date: Fri Jan 06 17:59:24 KST 2017
Comment:
Merge "Added #ifdef preprocessor about CASetMulticastTTL() API" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: b1c33772fa0caf3124d965c511d54ea5e219d5b6
User: js126 lee
Date: Fri Jan 06 17:37:44 KST 2017
Comment:
Merge "TLS suites" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: bc6e5fb39d4f665a67b3d3ccba70ecbfa729d4f7
User: yw1201 kim
Date: Fri Jan 06 17:29:34 KST 2017
Comment:
Merge "1. iOS BLE connectivity added 2. Style update and fixes" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a
User: hyuna0213.jo
Date: Fri Jan 06 16:51:13 KST 2017
Comment:
Added #ifdef preprocessor about CASetMulticastTTL() API
Change-Id: Ib6f35958f155c45de630c02b3864de366efaaccd
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/inc/cainterfacecontroller.h 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a:547adc192af77e436c1f0f16164d2c1b44fbba6a null
MODIFY resource/csdk/connectivity/src/cainterfacecontroller.c 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a:547adc192af77e436c1f0f16164d2c1b44fbba6a null
--------------------------------------------------------------------------------
Revision: 547adc192af77e436c1f0f16164d2c1b44fbba6a
User: Parkhi
Date: Fri Jan 06 14:56:26 KST 2017
Comment:
[CONPRO-553] Changed all of easysetup-callback-function to static member
function. This change can protect from crash when class instance is removed.
Change-Id: I0db76ee443a88ac15d11d62a44af0b92b754d697
Signed-off-by: Parkhi <h_w.park@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16037
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Jihun Ha <jihun.ha@samsung.com>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
Signed-off-by: Parkhi <h_w.park@samsung.com>
Modifications:
MODIFY service/easy-setup/mediator/richsdk/inc/RemoteEnrollee.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/CloudResource.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/CloudResource.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeResource.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeResource.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeSecurity.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeSecurity.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/RemoteEnrollee.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
--------------------------------------------------------------------------------
Revision: 82fecb62dfd44d4b261502edf0b28264c34201a0
User: Jongmin Choi
Date: Fri Jan 06 13:33:40 KST 2017
Comment:
TLS suites
1. Added:
TLS_RSA_WITH_AES_256_CBC_SHA256 0x3D
TLS_RSA_WITH_AES_128_GCM_SHA256 0x009C
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 0xC02C
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_256 0xC027
2. Removed:
TLS_RSA_WITH_AES_256_CBC_SHA 0x35
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009
3. SSL code refactored
4. Added unit tests for new cipher suites
5. CAsslGenerateOwnerPsk modified to support all suites
Change-Id: I33cbf2713a7b4e41d44d4bd97c3dc982d86df403
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15443
Reviewed-by: Jongsung Lee <js126.lee@samsung.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Greg Zaverucha <gregz@microsoft.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/OicCipher.java 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/api/casecurityinterface.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/inc/ca_adapter_net_ssl.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/src/caconnectivitymanager.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/test/ssladapter_test.cpp 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/sample/cloud/cloudCommon.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/src/oxmmanufacturercert.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/src/credresource.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/include/CAManager.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
--------------------------------------------------------------------------------
Revision: db348f74888b03f7aa82db5682b5dd57c137e43d
User: jminl choi
Date: Fri Jan 06 12:59:04 KST 2017
Comment:
Merge "Fix for patchset 15853" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: c30a318f97d8a5c2ae7c85311f4141018bdf072a
User: jminl choi
Date: Fri Jan 06 12:58:23 KST 2017
Comment:
Merge "Send alert after bad client hello" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad
User: js126.lee
Date: Fri Jan 06 12:44:59 KST 2017
Comment:
Send alert after bad client hello
Fix the following situation:
1. client tries OTM to server
2. OTM completed
3. network of server goes down and up => DTLS session has been removed
4. client tries to send a request to secure resource(e.g., /oic/sec/acl)
5. server prints bad client error(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO), and then ignore this
6. client never gets a response of it even if re-tries to sent same message
Change-Id: Ie2cd3eaa49fc8782522126799994a5cd47cfaf4e
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Joonghwan Lee <jh05.lee@samsung.com>
Signed-off-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15853
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
--------------------------------------------------------------------------------
Revision: 2cdfd5beff66b88ec15422b3f1197053ccb9fb2b
User: hyuna0213 jo
Date: Fri Jan 06 11:17:36 KST 2017
Comment:
Merge "[SAMSUNG] temp pathc : replace MTU size with 514 byte" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: f29333f26eaaa25ee786cb5a294039dcafc90e84
User: js126 lee
Date: Thu Jan 05 20:40:50 KST 2017
Comment:
Merge "Handshake Changed to One-Way Authentication" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 9ecc1f73df08a75143277c6487d24bba07d6f6c1
User: jaehong jo
Date: Thu Jan 05 20:24:26 KST 2017
Comment:
Merge "stop BLE advertising for disconnection status.(android/tizen)" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: e17d70666df4195fe88dc00a576ef1eb2fa21aa1
User: Chul Lee
Date: Thu Jan 05 17:58:21 KST 2017
Comment:
Removed compiler warnings for security modules.
Patch #1 : initial upload.
Patch #2 : retrigger.
Patch #3~4 : update according to comments.
Patch #5 : rebase
Change-Id: Ie5009c484f50d40c8a2e2f9ac7c361cd9a712d93
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15045
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/include/internal/crlresource.h e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/include/internal/otmcontextlist.h e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/sample/provisioningclient.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/credentialgenerator.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/otmcontextlist.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/pmutility.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/secureresourceprovider.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/credresource.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/crlresource.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/oxmpincommon.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/pbkdf2.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
--------------------------------------------------------------------------------
Revision: 7bfdbb3856c23779d37c81627c4679d6facd150f
User: Senthil Kumar G S
Date: Thu Jan 05 15:02:23 KST 2017
Comment:
Static Analysis(SVACE) issue fixes on Notification consumer.
Change-Id: Ic7e10fcd7764098151c55684c6c6fa0ad9ac557e
Signed-off-by: Senthil Kumar G S <senthil.gs@samsung.com>
Modifications:
MODIFY service/notification/android/notification-service/src/main/jni/consumer/JniNotificationConsumer.cpp 7bfdbb3856c23779d37c81627c4679d6facd150f:fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668 null
--------------------------------------------------------------------------------
Revision: 5a30dc184d68318357c4cb3c8fe1003d90e497f8
User: jihwan.seo
Date: Thu Jan 05 12:27:17 KST 2017
Comment:
stop BLE advertising for disconnection status.(android/tizen)
since advertising can be caused a big problem related battery.
it should be stopped when it is not used.
Change-Id: Ib645dafe9cba3218972b655cfa0f5b067ad971eb
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/android/caleserver.c 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/android/caleserver.h 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver.c 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
--------------------------------------------------------------------------------
Revision: d4b5830d7e10d9cf36dc8133d31ed8e380f3c1f1
User: Jongmin Choi
Date: Wed Jan 04 18:26:56 KST 2017
Comment:
Handshake Changed to One-Way Authentication
Handshake changed so that only client will verify server certificate
Patch #1: Initial upload
Change-Id: I8faa755022ec2f0f2eab5a4f9037c3fd1243aeb8
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c d4b5830d7e10d9cf36dc8133d31ed8e380f3c1f1:5833fc1fa5af6cfc12c7cd7be762bf6f4711d2a0 null
--------------------------------------------------------------------------------
Revision: fb88a108fbfe6201a3da403b88c2444f3d104c20
User: Md. Kamrujjaman Akon
Date: Wed Jan 04 17:47:54 KST 2017
Comment:
1. iOS BLE connectivity added
2. Style update and fixes
Change-Id: Ic18998028410c842c3ada7604508dfcbdc03a73e
Signed-off-by: Md. Kamrujjaman Akon <mdk.akon@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/api/cautilinterface.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/SConscript fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleclient.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleclient.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/calenwmonitor.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/calenwmonitor.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleserver.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleserver.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleutils.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/SConscript fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/inc/camanagerleinterface.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleautoconnector.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleautoconnector.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleconnectionmanager.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerdevice.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerdevice.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerleutil.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerleutil.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/src/cautilinterface.c fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
--------------------------------------------------------------------------------
Revision: af9a7ecdba7de7b683e6677e9468cde72b014444
User: Jongmin Choi
Date: Tue Jan 03 19:05:00 KST 2017
Comment:
Modify Reset Profile to include cred resource
Reset Profile modified to include cred resource
https://gerrit.iotivity.org/gerrit/#/c/16111/
Patch #1: Initial upload
Patch #2: ResetSecureResourceInPS() modified
Change-Id: I5ed286ac43b32f3e04d33a9d0f1428a7443d7c08
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16111
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/psinterface.c af9a7ecdba7de7b683e6677e9468cde72b014444:fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668 null
--------------------------------------------------------------------------------
Revision: e7449c4a6b1297359c21410d20f88a40e5b90f0b
User: Dmitriy Zhuravlev
Date: Fri Dec 30 16:28:14 KST 2016
Comment:
Fix for patchset 15853
Fixed OTM error caused by patchset 15853.
Added close notify alert sending to DeletePeerList()
Change-Id: Ib5363f8d16358a388df0f003e9111f1d56ccca62
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16001
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c e7449c4a6b1297359c21410d20f88a40e5b90f0b:f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad null
--------------------------------------------------------------------------------
Revision: 4f01a28f4039959e481a14331489f5dc13debc8e
User: MSK
Date: Fri Dec 30 12:42:48 KST 2016
Comment:
Updates for VD BLE support (Tizen TV)
- Added calenwmonitor_vd.c
Change-Id: I986dda7d72862988b17f4d0644715f6e6c83ae97
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/SConscript 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
ADD resource/csdk/connectivity/src/bt_le_adapter/tizen/calenwmonitor_vd.c 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_vd.c 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
--------------------------------------------------------------------------------
Revision: f7688681728e25094273934d7ef79395a2ef1f30
User: hyuna0213.jo
Date: Wed Dec 28 08:56:11 KST 2016
Comment:
Send error response in case request msg type is unicast
It is unnecessary to respond to a multicast request
Change-Id: I071300b21e8d56459bee4f29b9c031ceed973067
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/stack/src/ocstack.c f7688681728e25094273934d7ef79395a2ef1f30:e775ce68b215d8cf6a7e3f43595de81605b9aa4d null
--------------------------------------------------------------------------------
Revision: 34fc43e4e36fc21097e6ca52176d0766158b3ecf
User: js126.lee
Date: Tue Dec 27 17:15:28 KST 2016
Comment:
Add revstat into optdata of Cred according to OCF spec
Accoding to ocf security spec, revstat is mandatory property.
"revstat": {
"type": "boolean",
"description": "Revocation status flag
- true = revoked, false = not revoked"
Patch 1: upload patch.
Patch 2: update json2cbor.c to convert revstat
Change-Id: Ifbb7743f8321cb8afbf69cfa307694598e24ea6e
Signed-off-by: js126.lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15951
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/include/internal/srmresourcestrings.h 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/include/securevirtualresourcetypes.h 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/provisioning/src/secureresourceprovider.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/src/credresource.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/src/srmresourcestrings.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/tool/json2cbor.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
--------------------------------------------------------------------------------
Revision: d00c6fec635e3cd3d1360ca48a0e097a47230cf9
User: jihwan.seo
Date: Tue Dec 27 14:15:01 KST 2016
Comment:
[SAMSUNG] temp pathc : replace MTU size with 514 byte
Change-Id: I41336dffb9c42019da7c0a676fb5fa63f8627003
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/inc/cafragmentation.h d00c6fec635e3cd3d1360ca48a0e097a47230cf9:65ed3e6ea7f36d86e83c369e202a4712d2b79f65 null
/suprem.sec.samsung.net/gerrit/IoTivity refs/changes/55/106355/5 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/73/106373/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/106395/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/28/106428/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/47/106447/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/52/106452/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/81/106581/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/82/106582/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/90/106590/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/91/106591/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/93/106593/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/15/106615/2 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/26/106626/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/84/106684/1 && git cherry-pick FETCH_HEAD
change_set: (from commit fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668)
--------------------------------------------------------------------------------
Revision: dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4
User: jihwan.seo
Date: Mon Jan 09 12:45:04 KST 2017
Comment:
[SAMSUNG] stop BLE advertising for disconnection status.(tizen MCD, VD)
since advertising can be caused a big problem related battery consumption.
it should be stopped when it is not used.
Change-Id: Ibc92743fce56694f05af79d0a47ce06325c3237a
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_mcd.c dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4:fcb6143f3b28766f89c332b323159eb33a913116 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_vd.c dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4:fcb6143f3b28766f89c332b323159eb33a913116 null
--------------------------------------------------------------------------------
Revision: fcb6143f3b28766f89c332b323159eb33a913116
User: Chul Lee
Date: Mon Jan 09 10:52:46 KST 2017
Comment:
Update to include mbedtls library in stack's sample build
Change-Id: Ia94116ab121b4d04038cd3b4ded03b325378511f
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/stack/test/linux/SConscript fcb6143f3b28766f89c332b323159eb33a913116:c4f6d85cdabcab328e5f94d055eb36011939b52a null
--------------------------------------------------------------------------------
Revision: c4f6d85cdabcab328e5f94d055eb36011939b52a
User: h_w park
Date: Mon Jan 09 10:29:00 KST 2017
Comment:
Merge "Update to include mbedtls library in Secure build" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 891c5af03e821cb1f0aebf726a855d13dac17938
User: Jihun Ha
Date: Mon Jan 09 10:26:21 KST 2017
Comment:
Update to include mbedtls library in Secure build
Change-Id: I68daba29795455f2b03dafa91fc1137984feb25d
Signed-off-by: Jihun Ha <jihun.ha@samsung.com>
Modifications:
MODIFY service/easy-setup/sampleapp/enrollee/linux-samsung/SConscript 891c5af03e821cb1f0aebf726a855d13dac17938:7b6122f4c53f7172ede14163740e293092171ec9 null
MODIFY service/easy-setup/sampleapp/enrollee/linux/SConscript 891c5af03e821cb1f0aebf726a855d13dac17938:7b6122f4c53f7172ede14163740e293092171ec9 null
--------------------------------------------------------------------------------
Revision: 7497d53650f47b36d803d526bbb281810c0834cc
User: jihwan seo
Date: Mon Jan 09 10:16:02 KST 2017
Comment:
Merge "Send error response in case request msg type is unicast" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 3bfb0a407a1e9cb7270176d27dbf7a1bf216ce38
User: Jongmin Choi
Date: Mon Jan 09 09:31:16 KST 2017
Comment:
Modify CreateResetProfile() to preserve the original profile
CreateResetProfile() modified to preserve the original profile
created at first
Patch #1: Initial upload
Change-Id: I3420d83a8c8a8b17f947dd244bb03ce7926159bb
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/psinterface.c 3bfb0a407a1e9cb7270176d27dbf7a1bf216ce38:7b6122f4c53f7172ede14163740e293092171ec9 null
--------------------------------------------------------------------------------
Revision: 7b6122f4c53f7172ede14163740e293092171ec9
User: jaehong jo
Date: Mon Jan 09 08:12:47 KST 2017
Comment:
Merge "Revert "[IOT-1714]Add wifi.p2p connection status changed intent receiver"" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 2df361249fca0230c55473d2b430416ff5cb5836
User: jaehong jo
Date: Mon Jan 09 08:12:19 KST 2017
Comment:
Revert "[IOT-1714]Add wifi.p2p connection status changed intent receiver"
This reverts commit 58a3604b455ea16982e6f6de2b04118ff633edc8.
Change-Id: I926baf6e7113f77b6fb803de4492e99605855feb
Modifications:
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaIpInterface.java 2df361249fca0230c55473d2b430416ff5cb5836:58a3604b455ea16982e6f6de2b04118ff633edc8 null
--------------------------------------------------------------------------------
Revision: ed2ea1917298987eb384c6239b0e0724e2fa490b
User: jaehong jo
Date: Sat Jan 07 15:52:09 KST 2017
Comment:
Merge "To support start/stop LE advertising API for android" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 4a560587b670f95d594b2386f0768c9cb448f9c5
User: jihwan seo
Date: Sat Jan 07 15:28:50 KST 2017
Comment:
Merge "Revert "[SAMSUNG] temp pathc : replace MTU size with 514 byte"" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 872c8a18f8a2900aa3ddcda3e75a6dcdc9c1a917
User: jihwan seo
Date: Sat Jan 07 15:28:46 KST 2017
Comment:
Revert "[SAMSUNG] temp pathc : replace MTU size with 514 byte"
This reverts commit d00c6fec635e3cd3d1360ca48a0e097a47230cf9.
Change-Id: Id307b7550794c6c29c3931c409ff935be40b5281
Modifications:
MODIFY resource/csdk/connectivity/inc/cafragmentation.h 872c8a18f8a2900aa3ddcda3e75a6dcdc9c1a917:d00c6fec635e3cd3d1360ca48a0e097a47230cf9 null
--------------------------------------------------------------------------------
Revision: 951558a269828159a1c6e1d3e74a752960fc7dae
User: jihwan.seo
Date: Sat Jan 07 15:20:26 KST 2017
Comment:
To support start/stop LE advertising API for android
Change-Id: I3201e563cdd07bb84c38639f9a2b6743122b2385
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY android/android_api/base/jni/JniCaInterface.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaInterface.java 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/api/cautilinterface.h 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/inc/camanagerleinterface.h 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/src/camanager/bt_le_manager/android/caleconnectionmanager.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY resource/csdk/connectivity/util/src/cautilinterface.c 951558a269828159a1c6e1d3e74a752960fc7dae:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
--------------------------------------------------------------------------------
Revision: 3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3
User: jihwan seo
Date: Sat Jan 07 12:44:17 KST 2017
Comment:
Merge "Updates for VD BLE support (Tizen TV) - Added calenwmonitor_vd.c" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: d4611ef24f131302fa08fe8a55ee6199a78d9bc9
User: js126 lee
Date: Fri Jan 06 18:46:14 KST 2017
Comment:
Merge "Modify SetupCipher() to support multiple ciphersuites" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 715f88dde7acc4878c6b1f30e5af0adba2aa6189
User: chuls lee
Date: Fri Jan 06 18:27:28 KST 2017
Comment:
Merge "Removed compiler warnings for security modules." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: b261d0d7c4483a6eb57d8cdb0336ed6b31fcbbfe
User: Jongmin Choi
Date: Fri Jan 06 18:25:24 KST 2017
Comment:
Modify SetupCipher() to support multiple ciphersuites
SetupCipher() modified to support multiple ciphersuites
Patch #1: initial upload
Change-Id: Ie61b4116e41c0845082eda9ca8ab9c859a1fc5b0
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c b261d0d7c4483a6eb57d8cdb0336ed6b31fcbbfe:54b3ab75572776e83c013765c3771749c6f22389 null
--------------------------------------------------------------------------------
Revision: 279da96989d40545fcf687835b03b8d49756944a
User: Jihun Ha
Date: Fri Jan 06 18:24:05 KST 2017
Comment:
Merge "Static Analysis(SVACE) issue fixes on Notification consumer." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 54b3ab75572776e83c013765c3771749c6f22389
User: jihwan seo
Date: Fri Jan 06 17:59:24 KST 2017
Comment:
Merge "Added #ifdef preprocessor about CASetMulticastTTL() API" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: b1c33772fa0caf3124d965c511d54ea5e219d5b6
User: js126 lee
Date: Fri Jan 06 17:37:44 KST 2017
Comment:
Merge "TLS suites" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: bc6e5fb39d4f665a67b3d3ccba70ecbfa729d4f7
User: yw1201 kim
Date: Fri Jan 06 17:29:34 KST 2017
Comment:
Merge "1. iOS BLE connectivity added 2. Style update and fixes" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a
User: hyuna0213.jo
Date: Fri Jan 06 16:51:13 KST 2017
Comment:
Added #ifdef preprocessor about CASetMulticastTTL() API
Change-Id: Ib6f35958f155c45de630c02b3864de366efaaccd
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/inc/cainterfacecontroller.h 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a:547adc192af77e436c1f0f16164d2c1b44fbba6a null
MODIFY resource/csdk/connectivity/src/cainterfacecontroller.c 9c9310b2e44d1f0d3a3b7ca356399bdcd741e79a:547adc192af77e436c1f0f16164d2c1b44fbba6a null
--------------------------------------------------------------------------------
Revision: 547adc192af77e436c1f0f16164d2c1b44fbba6a
User: Parkhi
Date: Fri Jan 06 14:56:26 KST 2017
Comment:
[CONPRO-553] Changed all of easysetup-callback-function to static member
function. This change can protect from crash when class instance is removed.
Change-Id: I0db76ee443a88ac15d11d62a44af0b92b754d697
Signed-off-by: Parkhi <h_w.park@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16037
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Jihun Ha <jihun.ha@samsung.com>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
Signed-off-by: Parkhi <h_w.park@samsung.com>
Modifications:
MODIFY service/easy-setup/mediator/richsdk/inc/RemoteEnrollee.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/CloudResource.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/CloudResource.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeResource.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeResource.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeSecurity.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeSecurity.h 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY service/easy-setup/mediator/richsdk/src/RemoteEnrollee.cpp 547adc192af77e436c1f0f16164d2c1b44fbba6a:db348f74888b03f7aa82db5682b5dd57c137e43d null
--------------------------------------------------------------------------------
Revision: 82fecb62dfd44d4b261502edf0b28264c34201a0
User: Jongmin Choi
Date: Fri Jan 06 13:33:40 KST 2017
Comment:
TLS suites
1. Added:
TLS_RSA_WITH_AES_256_CBC_SHA256 0x3D
TLS_RSA_WITH_AES_128_GCM_SHA256 0x009C
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 0xC02C
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_256 0xC027
2. Removed:
TLS_RSA_WITH_AES_256_CBC_SHA 0x35
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009
3. SSL code refactored
4. Added unit tests for new cipher suites
5. CAsslGenerateOwnerPsk modified to support all suites
Change-Id: I33cbf2713a7b4e41d44d4bd97c3dc982d86df403
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15443
Reviewed-by: Jongsung Lee <js126.lee@samsung.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Greg Zaverucha <gregz@microsoft.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/OicCipher.java 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/api/casecurityinterface.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/inc/ca_adapter_net_ssl.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/src/caconnectivitymanager.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/connectivity/test/ssladapter_test.cpp 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/sample/cloud/cloudCommon.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/provisioning/src/oxmmanufacturercert.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/csdk/security/src/credresource.c 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
MODIFY resource/include/CAManager.h 82fecb62dfd44d4b261502edf0b28264c34201a0:db348f74888b03f7aa82db5682b5dd57c137e43d null
--------------------------------------------------------------------------------
Revision: db348f74888b03f7aa82db5682b5dd57c137e43d
User: jminl choi
Date: Fri Jan 06 12:59:04 KST 2017
Comment:
Merge "Fix for patchset 15853" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: c30a318f97d8a5c2ae7c85311f4141018bdf072a
User: jminl choi
Date: Fri Jan 06 12:58:23 KST 2017
Comment:
Merge "Send alert after bad client hello" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad
User: js126.lee
Date: Fri Jan 06 12:44:59 KST 2017
Comment:
Send alert after bad client hello
Fix the following situation:
1. client tries OTM to server
2. OTM completed
3. network of server goes down and up => DTLS session has been removed
4. client tries to send a request to secure resource(e.g., /oic/sec/acl)
5. server prints bad client error(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO), and then ignore this
6. client never gets a response of it even if re-tries to sent same message
Change-Id: Ie2cd3eaa49fc8782522126799994a5cd47cfaf4e
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Joonghwan Lee <jh05.lee@samsung.com>
Signed-off-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15853
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
--------------------------------------------------------------------------------
Revision: 2cdfd5beff66b88ec15422b3f1197053ccb9fb2b
User: hyuna0213 jo
Date: Fri Jan 06 11:17:36 KST 2017
Comment:
Merge "[SAMSUNG] temp pathc : replace MTU size with 514 byte" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: f29333f26eaaa25ee786cb5a294039dcafc90e84
User: js126 lee
Date: Thu Jan 05 20:40:50 KST 2017
Comment:
Merge "Handshake Changed to One-Way Authentication" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 9ecc1f73df08a75143277c6487d24bba07d6f6c1
User: jaehong jo
Date: Thu Jan 05 20:24:26 KST 2017
Comment:
Merge "stop BLE advertising for disconnection status.(android/tizen)" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: e17d70666df4195fe88dc00a576ef1eb2fa21aa1
User: Chul Lee
Date: Thu Jan 05 17:58:21 KST 2017
Comment:
Removed compiler warnings for security modules.
Patch #1 : initial upload.
Patch #2 : retrigger.
Patch #3~4 : update according to comments.
Patch #5 : rebase
Change-Id: Ie5009c484f50d40c8a2e2f9ac7c361cd9a712d93
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15045
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/include/internal/crlresource.h e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/include/internal/otmcontextlist.h e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/sample/provisioningclient.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/credentialgenerator.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/otmcontextlist.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/pmutility.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/provisioning/src/secureresourceprovider.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/credresource.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/crlresource.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/oxmpincommon.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
MODIFY resource/csdk/security/src/pbkdf2.c e17d70666df4195fe88dc00a576ef1eb2fa21aa1:af9a7ecdba7de7b683e6677e9468cde72b014444 null
--------------------------------------------------------------------------------
Revision: 7bfdbb3856c23779d37c81627c4679d6facd150f
User: Senthil Kumar G S
Date: Thu Jan 05 15:02:23 KST 2017
Comment:
Static Analysis(SVACE) issue fixes on Notification consumer.
Change-Id: Ic7e10fcd7764098151c55684c6c6fa0ad9ac557e
Signed-off-by: Senthil Kumar G S <senthil.gs@samsung.com>
Modifications:
MODIFY service/notification/android/notification-service/src/main/jni/consumer/JniNotificationConsumer.cpp 7bfdbb3856c23779d37c81627c4679d6facd150f:fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668 null
--------------------------------------------------------------------------------
Revision: 5a30dc184d68318357c4cb3c8fe1003d90e497f8
User: jihwan.seo
Date: Thu Jan 05 12:27:17 KST 2017
Comment:
stop BLE advertising for disconnection status.(android/tizen)
since advertising can be caused a big problem related battery.
it should be stopped when it is not used.
Change-Id: Ib645dafe9cba3218972b655cfa0f5b067ad971eb
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/android/caleserver.c 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/android/caleserver.h 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver.c 5a30dc184d68318357c4cb3c8fe1003d90e497f8:31dd40f8572b86096bfd1055ecc145cfa66c47d0 null
--------------------------------------------------------------------------------
Revision: d4b5830d7e10d9cf36dc8133d31ed8e380f3c1f1
User: Jongmin Choi
Date: Wed Jan 04 18:26:56 KST 2017
Comment:
Handshake Changed to One-Way Authentication
Handshake changed so that only client will verify server certificate
Patch #1: Initial upload
Change-Id: I8faa755022ec2f0f2eab5a4f9037c3fd1243aeb8
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c d4b5830d7e10d9cf36dc8133d31ed8e380f3c1f1:5833fc1fa5af6cfc12c7cd7be762bf6f4711d2a0 null
--------------------------------------------------------------------------------
Revision: fb88a108fbfe6201a3da403b88c2444f3d104c20
User: Md. Kamrujjaman Akon
Date: Wed Jan 04 17:47:54 KST 2017
Comment:
1. iOS BLE connectivity added
2. Style update and fixes
Change-Id: Ic18998028410c842c3ada7604508dfcbdc03a73e
Signed-off-by: Md. Kamrujjaman Akon <mdk.akon@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/api/cautilinterface.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/SConscript fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleclient.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleclient.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/calenwmonitor.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/calenwmonitor.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleserver.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleserver.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/src/bt_le_adapter/ios/caleutils.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/SConscript fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/inc/camanagerleinterface.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleautoconnector.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleautoconnector.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/caleconnectionmanager.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerdevice.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerdevice.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerleutil.h fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
ADD resource/csdk/connectivity/util/src/camanager/bt_le_manager/ios/camanagerleutil.m fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
MODIFY resource/csdk/connectivity/util/src/cautilinterface.c fb88a108fbfe6201a3da403b88c2444f3d104c20:f967b376c3dd5eaf0729ab439e55a0cdaed223cd null
--------------------------------------------------------------------------------
Revision: af9a7ecdba7de7b683e6677e9468cde72b014444
User: Jongmin Choi
Date: Tue Jan 03 19:05:00 KST 2017
Comment:
Modify Reset Profile to include cred resource
Reset Profile modified to include cred resource
https://gerrit.iotivity.org/gerrit/#/c/16111/
Patch #1: Initial upload
Patch #2: ResetSecureResourceInPS() modified
Change-Id: I5ed286ac43b32f3e04d33a9d0f1428a7443d7c08
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16111
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/psinterface.c af9a7ecdba7de7b683e6677e9468cde72b014444:fee573ad11f3e4f3addfe2a43fc1a8a3b2f32668 null
--------------------------------------------------------------------------------
Revision: e7449c4a6b1297359c21410d20f88a40e5b90f0b
User: Dmitriy Zhuravlev
Date: Fri Dec 30 16:28:14 KST 2016
Comment:
Fix for patchset 15853
Fixed OTM error caused by patchset 15853.
Added close notify alert sending to DeletePeerList()
Change-Id: Ib5363f8d16358a388df0f003e9111f1d56ccca62
Signed-off-by: Oleksii Beketov <ol.beketov@samsung.com>
Signed-off-by: Dmitriy Zhuravlev <d.zhuravlev@samsung.com>
Signed-off-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16001
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Jongsung Lee <js126.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c e7449c4a6b1297359c21410d20f88a40e5b90f0b:f8a4e7eb5ee3cbb2e0d83211774fccafdc7624ad null
--------------------------------------------------------------------------------
Revision: 4f01a28f4039959e481a14331489f5dc13debc8e
User: MSK
Date: Fri Dec 30 12:42:48 KST 2016
Comment:
Updates for VD BLE support (Tizen TV)
- Added calenwmonitor_vd.c
Change-Id: I986dda7d72862988b17f4d0644715f6e6c83ae97
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/SConscript 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
ADD resource/csdk/connectivity/src/bt_le_adapter/tizen/calenwmonitor_vd.c 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/tizen/caleserver_vd.c 4f01a28f4039959e481a14331489f5dc13debc8e:ac2a56d8f2b8a8397b83b13be43b4e6564e75982 null
--------------------------------------------------------------------------------
Revision: f7688681728e25094273934d7ef79395a2ef1f30
User: hyuna0213.jo
Date: Wed Dec 28 08:56:11 KST 2016
Comment:
Send error response in case request msg type is unicast
It is unnecessary to respond to a multicast request
Change-Id: I071300b21e8d56459bee4f29b9c031ceed973067
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/stack/src/ocstack.c f7688681728e25094273934d7ef79395a2ef1f30:e775ce68b215d8cf6a7e3f43595de81605b9aa4d null
--------------------------------------------------------------------------------
Revision: 34fc43e4e36fc21097e6ca52176d0766158b3ecf
User: js126.lee
Date: Tue Dec 27 17:15:28 KST 2016
Comment:
Add revstat into optdata of Cred according to OCF spec
Accoding to ocf security spec, revstat is mandatory property.
"revstat": {
"type": "boolean",
"description": "Revocation status flag
- true = revoked, false = not revoked"
Patch 1: upload patch.
Patch 2: update json2cbor.c to convert revstat
Change-Id: Ifbb7743f8321cb8afbf69cfa307694598e24ea6e
Signed-off-by: js126.lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/15951
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/include/internal/srmresourcestrings.h 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/include/securevirtualresourcetypes.h 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/provisioning/src/secureresourceprovider.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/src/credresource.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/src/srmresourcestrings.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
MODIFY resource/csdk/security/tool/json2cbor.c 34fc43e4e36fc21097e6ca52176d0766158b3ecf:2cdfd5beff66b88ec15422b3f1197053ccb9fb2b null
--------------------------------------------------------------------------------
Revision: d00c6fec635e3cd3d1360ca48a0e097a47230cf9
User: jihwan.seo
Date: Tue Dec 27 14:15:01 KST 2016
Comment:
[SAMSUNG] temp pathc : replace MTU size with 514 byte
Change-Id: I41336dffb9c42019da7c0a676fb5fa63f8627003
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/inc/cafragmentation.h d00c6fec635e3cd3d1360ca48a0e097a47230cf9:65ed3e6ea7f36d86e83c369e202a4712d2b79f65 null
=======
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/67/104767/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
http://suprem.sec.samsung.net/jira/browse/CONPRO-419
commit_info_2016-12-07.txt
commit_id: d30d635f1f83a1186885c35121cb0cdaa48b9bfd
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/72/101872/7 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/75/103475/4 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/95/103495/3 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/21/103621/1 && git cherry-pick FETCH_HEAD
cherrypick_cmd_id: git fetch http://suprem.sec.samsung.net/gerrit/IoTivity refs/changes/31/103631/1 && git cherry-pick FETCH_HEAD
----------------------------------------------------------------------------------------------------------------------------------
>>>>>>> e3989364802dccd6e7f25980ebf9c6da4104960d
change_set: (from commit dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4)
--------------------------------------------------------------------------------
Revision: a0fa1b90b075ee3e5c500d3ce0f0f5572e35e429
User: chuls lee
Date: Thu Jan 12 12:55:12 KST 2017
Comment:
Merge "Modify confirmable certificate OTM" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 7b0c28e3b2927fe9cce7340e6b20086b3dce8c59
User: jaehong jo
Date: Thu Jan 12 12:50:21 KST 2017
Comment:
Merge "[CONPRO-575] Fixed crash issue when OCStop." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 065234ad5a55d1681b18b9e77ce0d1652e2afcad
User: Joonghwan Lee
Date: Thu Jan 12 12:50:12 KST 2017
Comment:
Merge "Changed gbsbuild.sh's permission." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: eaa28609484dfefe7248e4c4cdf0324c5e453dfb
User: Chul Lee
Date: Thu Jan 12 12:46:03 KST 2017
Comment:
Changed gbsbuild.sh's permission.
Change-Id: I5f30401e86b7920b765fc162b82260cbd59aea93
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY gbsbuild.sh eaa28609484dfefe7248e4c4cdf0324c5e453dfb:19a2c96229168f0b80c36f666973ce749b42e2b4 null
MODIFY resource/csdk/connectivity/build/tizen/gbsbuild.sh eaa28609484dfefe7248e4c4cdf0324c5e453dfb:19a2c96229168f0b80c36f666973ce749b42e2b4 null
MODIFY resource/csdk/stack/samples/tizen/build/gbsbuild.sh eaa28609484dfefe7248e4c4cdf0324c5e453dfb:19a2c96229168f0b80c36f666973ce749b42e2b4 null
MODIFY service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample/build/tizen/gbsbuild.sh eaa28609484dfefe7248e4c4cdf0324c5e453dfb:19a2c96229168f0b80c36f666973ce749b42e2b4 null
--------------------------------------------------------------------------------
Revision: 53d6e1a435a49b123862b7ddb504c56e1de69d6a
User: chuls lee
Date: Thu Jan 12 12:45:41 KST 2017
Comment:
Merge "Add NULL check in StartRetransmit function." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 19a2c96229168f0b80c36f666973ce749b42e2b4
User: dongik lee
Date: Thu Jan 12 10:07:06 KST 2017
Comment:
Merge "Switch to non-confirmable message for Confirm cases" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: e2346ac58485bbd6a89afb560da35e9c3eabce91
User: chuls lee
Date: Thu Jan 12 10:00:29 KST 2017
Comment:
Merge "Add NULL check in StartRetransmit function." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 0aac13bff9aa7e641a8ca0675d2bb6e06a98e591
User: jaehong jo
Date: Thu Jan 12 08:24:42 KST 2017
Comment:
Merge "[CONPRO-575] Fixed crash issue when OCStop." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 5d4b029804d464302ae47723c911ef53ff93a515
User: jaehong jo
Date: Wed Jan 11 19:17:19 KST 2017
Comment:
Merge "[CONPRO-589] Fixed Thread-unsafe code in caqueueingthread.c" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 71eb272ea15baf3193fe7e18c1b48fe309669f3f
User: hyuna0213.jo
Date: Wed Jan 11 18:05:41 KST 2017
Comment:
[CONPRO-589] Fixed Thread-unsafe code in caqueueingthread.c
Change-Id: Ie38bcef494a614a98f519425f75998345f35ebb0
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/caqueueingthread.c 71eb272ea15baf3193fe7e18c1b48fe309669f3f:f036dd3dda3a8b05543a16e75cb73e395ea807d1 null
--------------------------------------------------------------------------------
Revision: aa2963b82f62e376e60a6837e51de3a1691dd027
User: Chul Lee
Date: Wed Jan 11 17:45:26 KST 2017
Comment:
Add NULL check in StartRetransmit function.
Change-Id: Ia7772c1cd574be8b001a43e7b6b482663dc2a2b4
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
--------------------------------------------------------------------------------
Revision: 5b5eec57142ae233873975917fa607e70864d5c2
User: Chul Lee
Date: Wed Jan 11 17:45:26 KST 2017
Comment:
Add NULL check in StartRetransmit function.
Change-Id: Ia7772c1cd574be8b001a43e7b6b482663dc2a2b4
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c 5b5eec57142ae233873975917fa607e70864d5c2:388321ff2a35273e60273a8c12c11069bc5494af null
--------------------------------------------------------------------------------
Revision: 388321ff2a35273e60273a8c12c11069bc5494af
User: hyuna0213 jo
Date: Wed Jan 11 17:22:58 KST 2017
Comment:
Merge "fix to pending terminate logic when call OCStop" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 34665f457160f14a70fb1ea5f4ac4aa3df8fa2a0
User: jihwan seo
Date: Wed Jan 11 17:02:03 KST 2017
Comment:
Merge "Add log messages on cathreadpool to improve debugging" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: f60d79322be5a9c20a7104f7bb2c2c8f620d8218
User: jihwan.seo
Date: Wed Jan 11 17:01:05 KST 2017
Comment:
fix to pending terminate logic when call OCStop
Change-Id: If5e02f49b8d0a69c6b2d1ed90ba9370f9da6328e
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/bt_le_adapter/android/caleclient.c f60d79322be5a9c20a7104f7bb2c2c8f620d8218:827689d6f67d11b254bb04a01148df7971459afc null
MODIFY resource/csdk/connectivity/src/bt_le_adapter/caleadapter.c f60d79322be5a9c20a7104f7bb2c2c8f620d8218:827689d6f67d11b254bb04a01148df7971459afc null
--------------------------------------------------------------------------------
Revision: 269e3f882e38ed58c6b8c8ee4f41642344cdc254
User: hyuna0213.jo
Date: Wed Jan 11 15:07:29 KST 2017
Comment:
Add log messages on cathreadpool to improve debugging
Change-Id: Ic2163e4f84a9c5c4525f072e08c6f5a5b21ca1d9
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/common/src/cathreadpool_pthreads.c 269e3f882e38ed58c6b8c8ee4f41642344cdc254:f036dd3dda3a8b05543a16e75cb73e395ea807d1 null
--------------------------------------------------------------------------------
Revision: 52bf8944e8a17131c2b2727d822560ef88edd799
User: Chul Lee
Date: Wed Jan 11 14:24:11 KST 2017
Comment:
Fix the build error for MOT.
This error was caused by https://gerrit.iotivity.org/gerrit/#/c/16137/ (remove tinydtls)
Change-Id: I48a68c9de65fdd1816904be3accb94e78381be40
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16257
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/provisioning/src/multipleownershiptransfermanager.c 52bf8944e8a17131c2b2727d822560ef88edd799:9dbd26a8d5435aaff774c8fac067e0ad9b5f2032 null
MODIFY resource/csdk/security/src/doxmresource.c 52bf8944e8a17131c2b2727d822560ef88edd799:9dbd26a8d5435aaff774c8fac067e0ad9b5f2032 null
--------------------------------------------------------------------------------
Revision: 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032
User: Chul Lee
Date: Wed Jan 11 14:22:47 KST 2017
Comment:
Remove tinydtls library.
Change-Id: I78f470af822587f2cd50eac6e9b1fb4ff5b87219
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16137
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Greg Zaverucha <gregz@microsoft.com>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY NOTICE.md 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY build_common/android/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Add-TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA_256-cipher-su.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Added-anonymous-ecdh-cipher-suite-into-tinydtls.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Added-support-in-tinyDTLS-to-support-rehandshake.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Adding-autoconf-generated-files-in-tinydtls-repo.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Bug-Fix-in-earlier-rehandhsake-implementation.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Fix-the-wrong-implementation-about-the-anonymous-cip.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Fixed-issue-to-pass-PSK-identity-hint-to-application.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-Updated-tinyDTLS-test-apps-to-use-identity-hint.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/0001-add-support-of-X.509-into-tinyDTLS-external-library.patch 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/Android.mk 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/LICENSE 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/Makefile.tinydtls 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/README 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/README_Iotivity 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/aes/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/aes/rijndael.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/aes/rijndael.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/alert.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ccm.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ccm.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/configure.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/crypto.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/crypto.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/debug.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/debug.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/doc/Doxyfile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/doc/DoxygenLayout.xml 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/doc/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls_config.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls_config.h.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls_hal.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls_time.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/dtls_time.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/LICENSE.txt 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/Makefile.contiki 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/Makefile.ecc 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/README.md 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/asm_arm.inc 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/asm_avr.inc 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/ecc.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/ecc.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/test/ecc_test/ecc_test.ino 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/test/emk_rules.py 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/test/test_ecdh.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/ecc/test/test_ecdsa.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/examples/contiki/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/examples/contiki/dtls-client.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/examples/contiki/dtls-server.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/global.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/hmac.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/hmac.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/netq.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/netq.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/numeric.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/peer.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/peer.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/config-cc2538dk.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/config-econotag.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/config-minimal-net.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/config-sky.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/platform-specific/config-wismote.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/prng.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/session.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/session.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/README 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/sha2.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/sha2.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/sha2prog.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/sha2speed.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/sha2test.pl 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector001.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector001.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector002.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector002.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector003.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector003.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector004.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector004.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector005.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector005.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector006.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector006.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector007.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector007.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector008.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector008.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector009.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector009.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector010.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector010.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector011.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector011.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector012.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector012.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector013.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector013.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector014.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector014.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector015.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector015.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector016.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector016.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector017.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector017.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector018.dat 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/sha2/testvectors/vector018.info 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/state.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/t_list.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/Makefile.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/cbc_aes128-test.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/cbc_aes128-testdata.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/ccm-test.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/ccm-testdata.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/dsrv-test.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/dtls-client.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/dtls-server.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/netq-test.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/pcap.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/prf-test.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tests/secure-server.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tinydtls.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/tinydtls.h.in 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/uthash.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
DELETE extlibs/tinydtls/utlist.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY gbsbuild.sh 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
ADD resource/c_common/utlist.h 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/connectivity/build/android/jni/Android.mk 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/connectivity/build/tizen/Makefile 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/connectivity/build/tizen/gbsbuild.sh 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/connectivity/build/tizen/packaging/com.oic.ca.spec 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/connectivity/src/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/sample/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/src/oxmjustworks.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/src/oxmmanufacturercert.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/src/oxmpreconfpin.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/src/oxmrandompin.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/provisioning/unittest/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/src/credresource.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/src/directpairing.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/src/doxmresource.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/src/dpairingresource.c 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/security/unittest/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/stack/samples/linux/SimpleClientServer/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/stack/samples/linux/secure/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/stack/samples/tizen/build/gbsbuild.sh 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY resource/csdk/stack/samples/tizen/build/packaging/com.oic.ri.spec 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY service/coap-http-proxy/unittests/SConscript 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
MODIFY service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample/build/tizen/gbsbuild.sh 9dbd26a8d5435aaff774c8fac067e0ad9b5f2032:ff1bd1c4e3451634f8bccb427de6077af323cb82 null
--------------------------------------------------------------------------------
Revision: ff1bd1c4e3451634f8bccb427de6077af323cb82
User: Joonghwan Lee
Date: Wed Jan 11 12:46:53 KST 2017
Comment:
Merge "Modify SetResult to handle reset usecase" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 2d992b706768940def20fadf86f5f488e3834c2a
User: js126.lee
Date: Wed Jan 11 11:34:27 KST 2017
Comment:
[CONPRO-593]Remove duplicated deviceID check in PM_Discovery
Patch 1: upload
Patch 2,3: If self reply, discard it.
Patch 4: Retriger jenkins build
Patch 5: Resolve conflict
Change-Id: Ife6bf2a802aa17da63899ad904a1df085696340e
Signed-off-by: js126.lee <js126.lee@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16297
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY resource/csdk/security/provisioning/src/pmutility.c 2d992b706768940def20fadf86f5f488e3834c2a:388321ff2a35273e60273a8c12c11069bc5494af null
--------------------------------------------------------------------------------
Revision: 462efb44880008008819e1f892f786c22dc55361
User: Jongmin Choi
Date: Wed Jan 11 11:22:50 KST 2017
Comment:
Modify confirmable certificate OTM
- In case of user denial, send relevant error message
- Reset in case of confirmation failure
Patch #1: initial upload
Patch #2: OC_STACK_NOT_ACCEPTABLE added
Change-Id: I9fe67488f4d19bab1b2cf222547e799be762f5f8
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16295
Reviewed-by: Chul Lee <chuls.lee@samsung.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Randeep Singh <randeep.s@samsung.com>
Modifications:
MODIFY android/android_api/base/jni/JniUtils.h 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/csdk/security/src/doxmresource.c 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/csdk/stack/include/octypes.h 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/csdk/stack/src/ocstack.c 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/include/StringConstants.h 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/src/OCException.cpp 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
MODIFY resource/unittests/OCExceptionTest.cpp 462efb44880008008819e1f892f786c22dc55361:53d6e1a435a49b123862b7ddb504c56e1de69d6a null
--------------------------------------------------------------------------------
Revision: 7839869c1bd1d896c40d21f19d09d1ac2a919e28
User: js126.lee
Date: Tue Jan 10 21:03:02 KST 2017
Comment:
[CONPRO585] Fixed Crash on SRMRequestHanlder
Change-Id: I68de73aa4f737ab5a24dce8215d34b7e1bb8ad8e
Signed-off-by: js126.lee <js126.lee@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/secureresourcemanager.c 7839869c1bd1d896c40d21f19d09d1ac2a919e28:ed12d5a019c06faf3b1db9842c36b08eb74cde51 null
--------------------------------------------------------------------------------
Revision: ed12d5a019c06faf3b1db9842c36b08eb74cde51
User: Jongmin Choi
Date: Tue Jan 10 20:26:08 KST 2017
Comment:
Support for One-Way Authentication
Support for One-Way Authentication in Handshake
Patch #1: initial upload
Change-Id: I516a446cee5f89b11ad43a9895549b115042f51e
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c ed12d5a019c06faf3b1db9842c36b08eb74cde51:f036dd3dda3a8b05543a16e75cb73e395ea807d1 null
--------------------------------------------------------------------------------
Revision: ad4cf324726d0f362d635c4443e7905b38bbd797
User: Jaehong Jo
Date: Tue Jan 10 15:13:29 KST 2017
Comment:
[CONPRO-575] Fixed crash issue when OCStop.
Change-Id: Ib836b91960a3698d379d8964a2a1d03e2c8d0f6d
Signed-off-by: Jaehong Jo <jaehong.jo@samsung.com>
Modifications:
--------------------------------------------------------------------------------
Revision: 3c5125182983e969f1fc681d71c98363883b60ca
User: Jaehong Jo
Date: Tue Jan 10 15:13:29 KST 2017
Comment:
[CONPRO-575] Fixed crash issue when OCStop.
Change-Id: Ib836b91960a3698d379d8964a2a1d03e2c8d0f6d
Signed-off-by: Jaehong Jo <jaehong.jo@samsung.com>
Modifications:
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaBtPairingInterface.java 3c5125182983e969f1fc681d71c98363883b60ca:fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa null
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaEdrInterface.java 3c5125182983e969f1fc681d71c98363883b60ca:fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa null
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaIpInterface.java 3c5125182983e969f1fc681d71c98363883b60ca:fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa null
MODIFY android/android_api/base/src/main/java/org/iotivity/ca/CaLeClientInterface.java 3c5125182983e969f1fc681d71c98363883b60ca:fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa null
MODIFY resource/csdk/connectivity/src/tcp_adapter/catcpadapter.c 3c5125182983e969f1fc681d71c98363883b60ca:fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa null
--------------------------------------------------------------------------------
Revision: f036dd3dda3a8b05543a16e75cb73e395ea807d1
User: js126.lee
Date: Tue Jan 10 14:50:54 KST 2017
Comment:
Fixed build error on Security
Change-Id: Iad4a8002750af459a82bb34b2151ab747a345215
Signed-off-by: js126.lee <js126.lee@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/doxmresource.c f036dd3dda3a8b05543a16e75cb73e395ea807d1:827689d6f67d11b254bb04a01148df7971459afc null
MODIFY resource/csdk/security/tool/svrdbeditor.c f036dd3dda3a8b05543a16e75cb73e395ea807d1:827689d6f67d11b254bb04a01148df7971459afc null
--------------------------------------------------------------------------------
Revision: 827689d6f67d11b254bb04a01148df7971459afc
User: jihwan seo
Date: Tue Jan 10 13:21:25 KST 2017
Comment:
Merge "Fix stack build error for iOS" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 9a184e394259107f4db08225ed9d244cf28a652a
User: hyuna0213.jo
Date: Tue Jan 10 13:19:15 KST 2017
Comment:
Fix stack build error for iOS
Change-Id: Ieaf636202d99c894dd53f7bf8d79a32461feefb8
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/stack/include/internal/ocstackinternal.h 9a184e394259107f4db08225ed9d244cf28a652a:8f0063c09f3a3695b55a7ac46d2c9e2dbc2bb7bc null
--------------------------------------------------------------------------------
Revision: 78a4328f188670fcbc3579ea8bff9e4ca1b035db
User: jihwan seo
Date: Tue Jan 10 13:17:07 KST 2017
Comment:
Merge "[SAMSUNG-VER] Update base stack ver tag" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: ac78520efc27a09bdb532057bec4aae44612253e
User: jihwan.seo
Date: Tue Jan 10 13:16:42 KST 2017
Comment:
[SAMSUNG-VER] Update base stack ver tag
Change-Id: I2cf30b9cd25e1a5ffd0141bb6a9c18078c1e831b
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/api/cacommon.h ac78520efc27a09bdb532057bec4aae44612253e:02f9d8d7c38552dd70144383754e0257aa94a24f null
--------------------------------------------------------------------------------
Revision: d1fff9be0f8fd9d5d26e93df468473b7ccfe3eac
User: Jongmin Choi
Date: Tue Jan 10 11:50:24 KST 2017
Comment:
Modify SetResult to handle reset usecase
SetResult modified to handle reset usecases
- SecurePort used for closing secure connection
- doxm and pstat properties reset after failed ownership transfer
Patch #1: initial upload
Patch #2: Fix
Change-Id: Ia846397f68dc75883476015c4ad852d6213869f9
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c d1fff9be0f8fd9d5d26e93df468473b7ccfe3eac:8f0063c09f3a3695b55a7ac46d2c9e2dbc2bb7bc null
--------------------------------------------------------------------------------
Revision: 29bff3da13b3d2446c8aacb56188f22aa1ee6033
User: Jongmin Choi
Date: Tue Jan 10 11:47:56 KST 2017
Comment:
Switch to non-confirmable message for Confirm cases
PostOwnerUuid message switched to non-confirmable for Confirm use cases
This is a workaround solution and will be removed later
Patch #1: initial upload
Change-Id: Iec0debefeac672a48d4db4f36de195ec543d8c7c
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 29bff3da13b3d2446c8aacb56188f22aa1ee6033:0f7bd146b0d012c8fad4152822a3bd0455d784a6 null
--------------------------------------------------------------------------------
Revision: 8f0063c09f3a3695b55a7ac46d2c9e2dbc2bb7bc
User: Chul Lee
Date: Tue Jan 10 11:37:43 KST 2017
Comment:
Fix security build error for iOS
Change-Id: I6359020b8bb10cc637d28db7de0866389de6d789
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/security/src/srmutility.c 8f0063c09f3a3695b55a7ac46d2c9e2dbc2bb7bc:a0ec83004b3e26e7305e109b65761f4575a2a7a6 null
--------------------------------------------------------------------------------
Revision: a0ec83004b3e26e7305e109b65761f4575a2a7a6
User: chuls lee
Date: Tue Jan 10 11:21:57 KST 2017
Comment:
Merge "SVR DB Editor" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 0f7bd146b0d012c8fad4152822a3bd0455d784a6
User: h_w park
Date: Tue Jan 10 10:55:03 KST 2017
Comment:
Merge "[CONPRO-487] Fix a logic to parse TC status property" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 02f9d8d7c38552dd70144383754e0257aa94a24f
User: Chul Lee
Date: Tue Jan 10 10:51:12 KST 2017
Comment:
Fix unittest error for doxm resource
Change-Id: I748c5aba0030927adca46b7c0731db83ff224074
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/security/unittest/doxmresource.cpp 02f9d8d7c38552dd70144383754e0257aa94a24f:fbaad728969929e6c15e67d09e3ca98d9b5eb5b7 null
--------------------------------------------------------------------------------
Revision: f19a97329292ccaf2b49a174bb3e515dd2193607
User: Chul Lee
Date: Tue Jan 10 10:44:40 KST 2017
Comment:
SVR DB Editor
This tool provides following features :
[Doxm]
- Print Doxm data
- Modify Doxm data (T.B.D)
[Pstat]
- Print Pstat data
- Modify Pstat data (T.B.D)
[ACL]
- Print ACL/ACE data (T.B.D)
- Modify ACL/ACE data (T.B.D)
- Insert ACE to ACL (T.B.D)
- Remove ACE from ACL (T.B.D)
[Credential]
- Print Credential data (Not fully supported yet)
- Modify Credential data (T.B.D)
- Insert credential to credential list (not fully supported yet)
- Remove credential from credential list
[Generate default SVR DB]
- T.B.D
Patch #1 : Initial upload
- Print DOXM, PSTAT, CRED
- Insert CRED
- Remove CRED
Patch #2 : Bug fix for add credential
Patch #3 : Update print ACL/ACE
Patch #4 : Bug fix for parse PEM cert.
Change-Id: I9bd09006601b08f2f88789aabc2a0c2a661b7e51
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/security/tool/SConscript f19a97329292ccaf2b49a174bb3e515dd2193607:fbaad728969929e6c15e67d09e3ca98d9b5eb5b7 null
ADD resource/csdk/security/tool/svrdbeditor.c f19a97329292ccaf2b49a174bb3e515dd2193607:fbaad728969929e6c15e67d09e3ca98d9b5eb5b7 null
--------------------------------------------------------------------------------
Revision: fbaad728969929e6c15e67d09e3ca98d9b5eb5b7
User: Jihun Ha
Date: Tue Jan 10 10:36:17 KST 2017
Comment:
Merge "Update for Multi Ownership Transfer condition" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 4822ce8494040552372056e70ff0260cf45d83a9
User: jaehong jo
Date: Tue Jan 10 00:01:43 KST 2017
Comment:
Merge "Replace u_array_list data structure with linked-list for keepalive" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 1c01cdcaeffd4c1181faadf1e0190eb2e5382d6d
User: hyuna0213.jo
Date: Mon Jan 09 23:24:51 KST 2017
Comment:
Replace u_array_list data structure with linked-list for keepalive
Change-Id: I0dfdba58fcae0e2201cd4841dccc3a0c0bf672e1
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/stack/src/oickeepalive.c 1c01cdcaeffd4c1181faadf1e0190eb2e5382d6d:dae92ce0d732e267686e58c52a34892bb91dcecd null
--------------------------------------------------------------------------------
Revision: fa3b737b7d339b4ccc2196314d8c9d7aa6b93ffa
User: hyuna0213 jo
Date: Mon Jan 09 22:54:18 KST 2017
Comment:
Merge "Enable TCP, CLOUD, SECURED in Tizen" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 8ac0d5f1779e99f0098297b5c6d2937d68863438
User: Jaehong Jo
Date: Mon Jan 09 22:53:36 KST 2017
Comment:
Enable TCP, CLOUD, SECURED in Tizen
Change-Id: Ife74fc4e26777a3c812f5d0784b4ba82c6293aa0
Signed-off-by: Jaehong Jo <jaehong.jo@samsung.com>
Modifications:
MODIFY gbsbuild.sh 8ac0d5f1779e99f0098297b5c6d2937d68863438:0bc6c452599446a6bd417002816793a41589f0b9 null
--------------------------------------------------------------------------------
Revision: dae92ce0d732e267686e58c52a34892bb91dcecd
User: js126 lee
Date: Mon Jan 09 22:35:20 KST 2017
Comment:
Merge "Update PDM" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: c5a3654db1fe6c74318ff391744001b38d171607
User: js126 lee
Date: Mon Jan 09 22:35:09 KST 2017
Comment:
Merge "Add API to set a seed value of device UUID." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 54f1bd3d772c64e6aba30945d152f08d159dffad
User: chuls lee
Date: Mon Jan 09 22:30:30 KST 2017
Comment:
Merge "Fix SetupCipher()" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 162ea1a58caad9cf72a38fce08c9df661dc3bb84
User: chuls lee
Date: Mon Jan 09 22:28:47 KST 2017
Comment:
Merge "Fix ownership transfer issues" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 060511f45890c920b6bd945688afa0289efe471b
User: jihwan.seo
Date: Mon Jan 09 22:07:46 KST 2017
Comment:
update debugging log related coap pdu
Change-Id: Ic6625983e3272798b801a14e5acc9b1c7fddd6e1
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/camessagehandler.c 060511f45890c920b6bd945688afa0289efe471b:0bc6c452599446a6bd417002816793a41589f0b9 null
--------------------------------------------------------------------------------
Revision: 0bc6c452599446a6bd417002816793a41589f0b9
User: byonggon chun
Date: Mon Jan 09 21:58:59 KST 2017
Comment:
Merge "Add Android sample to enable application layer keepalive mechanism." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c
User: Chul Lee
Date: Mon Jan 09 21:58:16 KST 2017
Comment:
Add API to set a seed value of device UUID.
After cloud related features updated,
We faced issues with device UUID not fixed for each things.
BTW, almost devices has a they own device unique value such as MAC address or machine ID.
So we can use these value as seed value of UUID generation.
Change-Id: I6ce668866b5881386a52ef8cb9de5226b8595749
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/octbstack_product_secured.def 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/include/internal/doxmresource.h 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/include/srmutility.h 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/src/doxmresource.c 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/src/srmutility.c 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/unittest/srmutility.cpp 3edfe2b2ece8d841d1cdf275d72bc9ec57fcc04c:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
--------------------------------------------------------------------------------
Revision: 94c550b081ab055210baa95fb671a3090c047a39
User: jaehong jo
Date: Mon Jan 09 21:58:07 KST 2017
Comment:
Merge "Add C++ public api to expose keepalive api for App" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 1e8f7ebe6b306ef83b2f88a21c42955c0e79c781
User: jaehong jo
Date: Mon Jan 09 21:58:02 KST 2017
Comment:
Merge "Added public API to enable application layer keepalive mechanism" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: b2cc02062fb563fb681ef2b612ca12a5f276eb07
User: Jongmin Choi
Date: Mon Jan 09 21:43:05 KST 2017
Comment:
Fix ownership transfer issues
Fix issues related to ownership transfer
- Port change after failed ownership transfer
Patch #1: initial upload
Patch #2: Wrong Pin Max Attempt changed
Change-Id: I2f2326a242f40b78453711f9d032b81eabac7e39
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c b2cc02062fb563fb681ef2b612ca12a5f276eb07:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/provisioning/include/internal/ownershiptransfermanager.h b2cc02062fb563fb681ef2b612ca12a5f276eb07:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c b2cc02062fb563fb681ef2b612ca12a5f276eb07:0d90ddeecc628e77d6b690d9217562ccc4b5ead3 null
--------------------------------------------------------------------------------
Revision: 0d90ddeecc628e77d6b690d9217562ccc4b5ead3
User: hyuna0213 jo
Date: Mon Jan 09 21:28:30 KST 2017
Comment:
Merge "fix crash issue related token copy" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 367d83b3e0ea3ff2a2b1aa88f6391fa5094243c9
User: Chul Lee
Date: Mon Jan 09 19:27:49 KST 2017
Comment:
Temporarily disable failed TLSAdapter's unit tests.
Change-Id: Ib8dd9d40684db9e0f68c4c82914b3c2f9b972656
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/test/ssladapter_test.cpp 367d83b3e0ea3ff2a2b1aa88f6391fa5094243c9:88f7cd936ab2e7753ef654558ee45e93809dc151 null
--------------------------------------------------------------------------------
Revision: 88f7cd936ab2e7753ef654558ee45e93809dc151
User: chuls lee
Date: Mon Jan 09 19:25:41 KST 2017
Comment:
Merge "Revert "Temporarily disable failed TLSAdapter's unit tests."" into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 2b66bc52a7e87fae10aff32635c37f69fe8191b7
User: chuls lee
Date: Mon Jan 09 19:25:33 KST 2017
Comment:
Revert "Temporarily disable failed TLSAdapter's unit tests."
This reverts commit 1db88e2edaa2adb649e3bb351525da0d098a26d7.
Change-Id: I48545c454455ce2e09aee6bda285e13309826a2c
Modifications:
MODIFY resource/csdk/connectivity/test/ssladapter_test.cpp 2b66bc52a7e87fae10aff32635c37f69fe8191b7:1db88e2edaa2adb649e3bb351525da0d098a26d7 null
--------------------------------------------------------------------------------
Revision: d15d3fecc696c855838e71d80c97825f60ed84d0
User: Jihun Ha
Date: Mon Jan 09 18:24:59 KST 2017
Comment:
Merge "[CONPRO-487] Fix a logic to handle collection resource payload construction for vendor-specific properties in easy setup." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 1e409f6f8f5e9fff6c359e5e21e567f0156dc95b
User: chuls lee
Date: Mon Jan 09 18:11:24 KST 2017
Comment:
Merge "Temporarily disable failed TLSAdapter's unit tests." into 1.2-rel
Modifications:
--------------------------------------------------------------------------------
Revision: 1db88e2edaa2adb649e3bb351525da0d098a26d7
User: Chul Lee
Date: Mon Jan 09 18:06:25 KST 2017
Comment:
Temporarily disable failed TLSAdapter's unit tests.
Change-Id: I8d1e07112b7ab5bce88a94213d2a43b3d32f106f
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/test/ssladapter_test.cpp 1db88e2edaa2adb649e3bb351525da0d098a26d7:82fecb62dfd44d4b261502edf0b28264c34201a0 null
--------------------------------------------------------------------------------
Revision: 5f9e641e18162cfd4da6719fabf06b8355c530cc
User: jihwan.seo
Date: Mon Jan 09 17:48:57 KST 2017
Comment:
fix crash issue related token copy
Change-Id: I30d5a08bca32a4e7751ee389256ae6d4bfb6a0f3
Signed-off-by: jihwan.seo <jihwan.seo@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/caprotocolmessage.c 5f9e641e18162cfd4da6719fabf06b8355c530cc:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/connectivity/src/ip_adapter/caipserver.c 5f9e641e18162cfd4da6719fabf06b8355c530cc:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
--------------------------------------------------------------------------------
Revision: 82da1a402856e24ed2bc351e8d68d77c691a0586
User: Jihun Ha
Date: Mon Jan 09 17:42:04 KST 2017
Comment:
[CONPRO-487] Fix a logic to parse TC status property
TC status is a property in provisioning resource so it can be retrieved
in a root representation, not child one.
Change-Id: I79b11234ac48f204f7823b638ffa3d6e573fddf1
Signed-off-by: Jihun Ha <jihun.ha@samsung.com>
Modifications:
MODIFY service/easy-setup/mediator/richsdk/inc/ESSCCommon.h 82da1a402856e24ed2bc351e8d68d77c691a0586:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
--------------------------------------------------------------------------------
Revision: 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa
User: bg.chun
Date: Mon Jan 09 15:58:41 KST 2017
Comment:
Add public Java api to expose keepalive api for App
Change-Id: Iaaf28d8cd2b5e4045bbdbbf582b8fcb174082d4a
Signed-off-by: bg.chun <bg.chun@samsung.com>
Modifications:
MODIFY android/android_api/base/jni/Android.mk 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
MODIFY android/android_api/base/jni/JniOcPlatform.cpp 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
MODIFY android/android_api/base/jni/JniOcPlatform.h 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
ADD android/android_api/base/jni/JniPingListener.cpp 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
ADD android/android_api/base/jni/JniPingListener.h 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
MODIFY android/android_api/base/src/main/java/org/iotivity/base/OcPlatform.java 9362b0dbeabc0ee8470163e9249fbd2bfefe25aa:94c550b081ab055210baa95fb671a3090c047a39 null
--------------------------------------------------------------------------------
Revision: 80bd3b8f0d3a99fec4a18a383c6fb0fbc9a57868
User: Jihun Ha
Date: Mon Jan 09 15:50:50 KST 2017
Comment:
[CONPRO-487] Fix a logic to handle collection resource payload construction
for vendor-specific properties in easy setup.
For vendor-specific properties in provisioning resource, they should be
included in 'rep' property.
Change-Id: I3bbbe18696777ab21b3d813115ceace8ab84f7d8
Signed-off-by: Jihun Ha <jihun.ha@samsung.com>
Modifications:
MODIFY service/easy-setup/enrollee/src/resourcehandler.c 80bd3b8f0d3a99fec4a18a383c6fb0fbc9a57868:891c5af03e821cb1f0aebf726a855d13dac17938 null
--------------------------------------------------------------------------------
Revision: da0c8f9fede11062c68efb2fc656a88cf61b257c
User: Jongmin Choi
Date: Mon Jan 09 14:04:56 KST 2017
Comment:
Fix SetupCipher()
Fix SetupCipher() to avoid duplicate ciphersuites
Patch #1: Initial upload
Patch #2: Logs added
Patch #3-4: Server ciphersuite selection added
Patch #5: Logs modified
Change-Id: I3a4aefd2a739523caa88e3a609ad26c9d1986dad
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/connectivity/src/adapter_util/ca_adapter_net_ssl.c da0c8f9fede11062c68efb2fc656a88cf61b257c:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/src/credresource.c da0c8f9fede11062c68efb2fc656a88cf61b257c:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
--------------------------------------------------------------------------------
Revision: 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb
User: Chul Lee
Date: Mon Jan 09 14:00:06 KST 2017
Comment:
Update PDM
This patch addresses the following exceptional cases :
1. The PT terminates unexpectedly.
- Start the OTM process
- Device information will be changed to INIT state.
- PT terminated while OTM.
- Restart the PT process.
- Retry the OTM process.
* OTM start will be failed due to device info already save as INIT state.
2. Timeout is occured PT side while OTM.
- Start the OTM process
- Device information will be changed to INIT state.
- OTM timeout is occured at the application side.
- PT retry the OTM.
* OTM start will be failed due to device info already save as INIT state.
I've added defence code and
added cleanup API that can be used when timeout occurs.
Patch #1 : Initial upload
Patch #2 : Retrigger
Patch #3 : Fix the bug for incorrect PIN inputed while random PIN OxM.
Patch #4-5 : Retrigger
Patch #6 : minor bug fix
Change-Id: I7781c0d864db6fdac93fa41acbcbf1ac123d15da
Signed-off-by: Chul Lee <chuls.lee@samsung.com>
Modifications:
MODIFY resource/csdk/octbstack_product_secured.def 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/include/internal/provisioningdatabasemanager.h 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/include/ocprovisioningmanager.h 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/sample/provisioningclient.c 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/sample/subownerclient.c 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/src/ocprovisioningmanager.c 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/provisioning/src/provisioningdatabasemanager.c 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/include/OCProvisioningManager.hpp 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/provisioning/src/OCProvisioningManager.cpp 44b9ac78503bf0ef123dcedddc0aa0eb641cf6cb:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
--------------------------------------------------------------------------------
Revision: 719d85e16af22b4f459e96e363e1e9a3bf696d75
User: Jaehong Jo
Date: Mon Jan 09 10:49:25 KST 2017
Comment:
Add Android sample to enable application layer keepalive mechanism.
C API : http://suprem.sec.samsung.net/gerrit/#/c/106295/
C++, JNI : http://suprem.sec.samsung.net/gerrit/#/c/106297/
Change-Id: I2a1ae66d90c013727581a9a7e8569ff2f36d2e63
Signed-off-by: Jaehong Jo <jaehong.jo@samsung.com>
Modifications:
MODIFY android/examples/simplebase/src/main/AndroidManifest.xml 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY android/examples/simplebase/src/main/java/org/iotivity/base/examples/DrawerFragment.java 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
ADD android/examples/simplebase/src/main/java/org/iotivity/base/examples/PingFragment.java 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY android/examples/simplebase/src/main/java/org/iotivity/base/examples/SimpleBase.java 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
ADD android/examples/simplebase/src/main/res/layout/fragment_ping.xml 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY android/examples/simplebase/src/main/res/values/strings.xml 719d85e16af22b4f459e96e363e1e9a3bf696d75:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
--------------------------------------------------------------------------------
Revision: 0e65992484d7480be7e246da995ed45044fb6070
User: bg.chun
Date: Sat Jan 07 16:33:59 KST 2017
Comment:
Add C++ public api to expose keepalive api for App
Change-Id: I3b1e6fb908de94437d140091069ba45210f1ab56
Signed-off-by: bg.chun <bg.chun@samsung.com>
Modifications:
MODIFY resource/include/IClientWrapper.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/include/InProcClientWrapper.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/include/OCApi.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/include/OCPlatform.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/include/OCPlatform_impl.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/include/OutOfProcClientWrapper.h 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/src/InProcClientWrapper.cpp 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/src/OCPlatform.cpp 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
MODIFY resource/src/OCPlatform_impl.cpp 0e65992484d7480be7e246da995ed45044fb6070:3b47e8e329a464e892e626d724856f29a0bf6a96 null
--------------------------------------------------------------------------------
Revision: 3b47e8e329a464e892e626d724856f29a0bf6a96
User: hyuna0213.jo
Date: Sat Jan 07 16:32:59 KST 2017
Comment:
Added public API to enable application layer keepalive mechanism
Change-Id: Ice7da518ab406825a1330e450ab73d7fafad2ab2
Signed-off-by: hyuna0213.jo <hyuna0213.jo@samsung.com>
Modifications:
MODIFY resource/csdk/SConscript 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
MODIFY resource/csdk/stack/include/internal/ocstackinternal.h 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
DELETE resource/csdk/stack/include/internal/oickeepalive.h 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
ADD resource/csdk/stack/include/internal/oickeepaliveinternal.h 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
ADD resource/csdk/stack/include/oickeepalive.h 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
MODIFY resource/csdk/stack/src/ocresource.c 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
MODIFY resource/csdk/stack/src/ocstack.c 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
MODIFY resource/csdk/stack/src/oickeepalive.c 3b47e8e329a464e892e626d724856f29a0bf6a96:d4611ef24f131302fa08fe8a55ee6199a78d9bc9 null
--------------------------------------------------------------------------------
Revision: ae5e9187e6b2abfab08c6284be56b9004fb57b7a
User: Jihun Ha
Date: Sat Jan 07 13:09:08 KST 2017
Comment:
Update for Multi Ownership Transfer condition
The found enrollee's owner ID indicates a same ID of mediator.
However, a list of owned devices managed in mediator's PMD db has
no element for the found enrollee. In that case, MOT will be failed.
For this, ES_OWNERSHIP_IS_NOT_SYNCHRONIZED value is returned, which
guides a user to reset a Enrollee's SVR DB file.
Change-Id: Ia5feaccccfc4cca4a0673d08cbba4d473324e37f
Signed-off-by: Parkhi <h_w.park@samsung.com>
Signed-off-by: Jihun Ha <jihun.ha@samsung.com>
Modifications:
MODIFY service/easy-setup/inc/escommon.h ae5e9187e6b2abfab08c6284be56b9004fb57b7a:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
MODIFY service/easy-setup/mediator/richsdk/src/EnrolleeSecurity.cpp ae5e9187e6b2abfab08c6284be56b9004fb57b7a:3d2bee77cf604c3aa82d99367f50ee1ee1c7b7e3 null
--------------------------------------------------------------------------------
Revision: 8ab1077b3f1a58fac06850cd5703cbc8f118637f
User: Jongmin Choi
Date: Fri Jan 06 15:43:35 KST 2017
Comment:
Logs added for confirmation callbacks
Logs added for confirmation callbacks
Patch #1: initial upload
Patch #2: Additional logs added
Change-Id: I0b42eeaccb21c9b11d1c8effecd8797ee80c2929
Signed-off-by: Jongmin Choi <jminl.choi@samsung.com>
Modifications:
MODIFY resource/csdk/security/provisioning/src/ownershiptransfermanager.c 8ab1077b3f1a58fac06850cd5703cbc8f118637f:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
MODIFY resource/csdk/security/src/oxmverifycommon.c 8ab1077b3f1a58fac06850cd5703cbc8f118637f:dc1f37ac0b54dade9f8bc1b5c9fe345729b8a4e4 null
|