@@ -394,14 +394,19 @@ module BoostorgAsio {
394
394
* Constructs a standard data flow computation for protocol values to the first argument
395
395
* of a context constructor.
396
396
*/
397
- module SslContextCallMake < SslContextCallConfigSig Config> {
397
+ module SslContextCallGlobal < SslContextCallConfigSig Config> {
398
398
private module C implements DataFlow:: ConfigSig {
399
399
import Config
400
400
}
401
401
402
402
import DataFlow:: Global< C >
403
403
}
404
404
405
+ /** DEPRECATED: Use `SslContextCallGlobal` instead. */
406
+ deprecated module SslContextCallMake< SslContextCallConfigSig Config> {
407
+ import SslContextCallGlobal< Config >
408
+ }
409
+
405
410
/**
406
411
* Any protocol value that flows to the first argument of a context constructor.
407
412
*/
@@ -428,7 +433,7 @@ module BoostorgAsio {
428
433
}
429
434
}
430
435
431
- module SslContextCallFlow = SslContextCallMake < SslContextCallConfig > ;
436
+ module SslContextCallFlow = SslContextCallGlobal < SslContextCallConfig > ;
432
437
433
438
/**
434
439
* A banned protocol value that flows to the first argument of a context constructor.
@@ -458,7 +463,8 @@ module BoostorgAsio {
458
463
}
459
464
}
460
465
461
- module SslContextCallBannedProtocolFlow = SslContextCallMake< SslContextCallBannedProtocolConfig > ;
466
+ module SslContextCallBannedProtocolFlow =
467
+ SslContextCallGlobal< SslContextCallBannedProtocolConfig > ;
462
468
463
469
/**
464
470
* A TLS 1.2 protocol value that flows to the first argument of a context constructor.
@@ -488,7 +494,7 @@ module BoostorgAsio {
488
494
}
489
495
}
490
496
491
- module SslContextCallTls12ProtocolFlow = SslContextCallMake < SslContextCallTls12ProtocolConfig > ;
497
+ module SslContextCallTls12ProtocolFlow = SslContextCallGlobal < SslContextCallTls12ProtocolConfig > ;
492
498
493
499
/**
494
500
* A TLS 1.3 protocol value that flows to the first argument of a context constructor.
@@ -518,7 +524,7 @@ module BoostorgAsio {
518
524
}
519
525
}
520
526
521
- module SslContextCallTls13ProtocolFlow = SslContextCallMake < SslContextCallTls13ProtocolConfig > ;
527
+ module SslContextCallTls13ProtocolFlow = SslContextCallGlobal < SslContextCallTls13ProtocolConfig > ;
522
528
523
529
/**
524
530
* A generic TLS protocol value that flows to the first argument of a context constructor.
@@ -548,7 +554,7 @@ module BoostorgAsio {
548
554
}
549
555
}
550
556
551
- module SslContextCallTlsProtocolFlow = SslContextCallMake < SslContextCallTlsProtocolConfig > ;
557
+ module SslContextCallTlsProtocolFlow = SslContextCallGlobal < SslContextCallTlsProtocolConfig > ;
552
558
553
559
/**
554
560
* A context constructor call that flows to a call to `SetOptions()`.
0 commit comments