@@ -215,7 +215,6 @@ class NtcChannel : public bmqio::Channel,
215
215
bdlmt::Signaler<WatermarkFnType> d_watermarkSignaler;
216
216
bdlmt::Signaler<CloseFnType> d_closeSignaler;
217
217
bmqio::ChannelFactory::ResultCallback d_resultCallback;
218
- bsl::shared_ptr<ntci::Upgradable> d_upgradable;
219
218
bslma::Allocator* d_allocator_p;
220
219
221
220
private:
@@ -420,22 +419,21 @@ class NtcChannel : public bmqio::Channel,
420
419
// / Set the write queue high watermark to the specified `highWatermark`.
421
420
void setWriteQueueHighWatermark (int highWatermark);
422
421
423
- // / Set the upgradable handle if this channel has been upgraded.
424
- void setUpgradable (const bsl::shared_ptr<ntci::Upgradable>& upgradable);
425
-
426
422
// / Assume the TLS server role and begin upgrading the socket from
427
423
// / being unencrypted to being encrypted with TLS. Invoke the specified
428
424
// / `upgradeCallback` when the socket has completed upgrading to TLS.
429
- void
430
- upgrade (const bsl::shared_ptr<ntci::EncryptionServer>& encryptionServer,
425
+ int
426
+ upgrade (bmqio::Status* status,
427
+ const bsl::shared_ptr<ntci::EncryptionServer>& encryptionServer,
431
428
const ntca::UpgradeOptions& options,
432
429
const ntci::UpgradeFunction& upgradeCallback);
433
430
434
431
// / Assume the TLS client role and begin upgrading the socket from
435
432
// / being unencrypted to being encrypted with TLS. Invoke the specified
436
433
// / `upgradeCallback` when the socket has completed upgrading to TLS.
437
- void
438
- upgrade (const bsl::shared_ptr<ntci::EncryptionClient>& encryptionClient,
434
+ int
435
+ upgrade (bmqio::Status* status,
436
+ const bsl::shared_ptr<ntci::EncryptionClient>& encryptionClient,
439
437
const ntca::UpgradeOptions& options,
440
438
const ntci::UpgradeFunction& upgradeCallback);
441
439
@@ -464,11 +462,6 @@ class NtcChannel : public bmqio::Channel,
464
462
// / Return the socket interface for this channel. This function is
465
463
// / undefined unless the channel has succesfully established a connection.
466
464
const ntci::StreamSocket& streamSocket () const ;
467
-
468
- // / Return the upgradable handle for the channel.
469
- const bsl::shared_ptr<ntci::Upgradable>& upgradable () const ;
470
-
471
- bsl::shared_ptr<ntci::Upgradable>& upgradable ();
472
465
};
473
466
474
467
// =====================
@@ -479,16 +472,6 @@ class NtcChannel : public bmqio::Channel,
479
472
struct NtcChannelUtil {
480
473
// CLASS METHODS
481
474
482
- // / \brief Return a reference providing const access to the name of the
483
- // / property used to define the encryption client for liseners.
484
- // / This property must be a `bsl::shared_ptr<ntci::EncryptionClient>`.
485
- static bsl::string_view encryptionClientProperty ();
486
-
487
- // / \brief Return a reference providing const access to the name of the
488
- // / property used to define the callback on a TLS upgrade.
489
- // / This property must be a `bsl::shared_ptr<ntci::UpgradeFunction>`.
490
- static bsl::string_view upgradeCallbackProperty ();
491
-
492
475
// / Load into the specified `status`, if defined, the description of
493
476
// / the specified `error` assigned to the specified `category` that
494
477
// / was detected when performing the specified `operation`.
@@ -526,18 +509,16 @@ class NtcListener : public bmqio::ChannelFactoryOperationHandle,
526
509
};
527
510
528
511
// INSTANCE DATA
529
- bslmt::Mutex d_mutex;
530
- bsl::shared_ptr<ntci::Interface> d_interface_sp;
531
- bsl::shared_ptr<ntci::ListenerSocket> d_listenerSocket_sp;
532
- bsl::string d_localUri;
533
- State d_state;
534
- bmqio::ListenOptions d_options;
535
- bmqvt::PropertyBag d_properties;
536
- bdlmt::Signaler<CloseFnType> d_closeSignaler;
537
- bmqio::ChannelFactory::ResultCallback d_resultCallback;
538
- bsl::shared_ptr<ntci::EncryptionServer> d_encryptionServer_sp;
539
- ntci::UpgradeFunction d_upgradeCallback;
540
- bslma::Allocator* d_allocator_p;
512
+ bslmt::Mutex d_mutex;
513
+ bsl::shared_ptr<ntci::Interface> d_interface_sp;
514
+ bsl::shared_ptr<ntci::ListenerSocket> d_listenerSocket_sp;
515
+ bsl::string d_localUri;
516
+ State d_state;
517
+ bmqio::ListenOptions d_options;
518
+ bmqvt::PropertyBag d_properties;
519
+ bdlmt::Signaler<CloseFnType> d_closeSignaler;
520
+ bmqio::ChannelFactory::ResultCallback d_resultCallback;
521
+ bslma::Allocator* d_allocator_p;
541
522
542
523
private:
543
524
// NOT IMPLEMENTED
@@ -556,10 +537,6 @@ class NtcListener : public bmqio::ChannelFactoryOperationHandle,
556
537
// / Process the closure of the socket.
557
538
void processClose (const bmqio::Status& status);
558
539
559
- // / Process the upgrade of a socket
560
- void processUpgrade (const bsl::shared_ptr<ntci::Upgradable>& upgradable,
561
- const ntca::UpgradeEvent& upgradeEvent);
562
-
563
540
public:
564
541
// TRAITS
565
542
BSLMF_NESTED_TRAIT_DECLARATION (NtcListener, bslma::UsesBslmaAllocator)
@@ -638,16 +615,6 @@ struct NtcListenerUtil {
638
615
// / port to which the listening socket is bound.
639
616
static bslstl::StringRef listenPortProperty ();
640
617
641
- // / \brief Return a reference providing const access to the name of the
642
- // / property used to define the encryption server for liseners.
643
- // / This property must be a `bsl::shared_ptr<ntci::EncryptionServer>`.
644
- static bsl::string_view encryptionServerProperty ();
645
-
646
- // / \brief Return a reference providing const access to the name of the
647
- // / property used to define the callback on a TLS upgrade.
648
- // / This property must be a `bsl::shared_ptr<ntci::UpgradeFunction>`.
649
- static bsl::string_view upgradeCallbackProperty ();
650
-
651
618
// / Load into the specified `status`, if defined, the description of
652
619
// / the specified `error` assigned to the specified `category` that
653
620
// / was detected when performing the specified `operation`.
0 commit comments