@@ -351,7 +351,8 @@ pub enum ActionKind {
351351 P2pNetworkIdentifyStreamNew ,
352352 P2pNetworkIdentifyStreamPrune ,
353353 P2pNetworkIdentifyStreamRemoteClose ,
354- P2pNetworkIdentifyStreamEffectfulSendIdentify ,
354+ P2pNetworkIdentifyStreamSendIdentify ,
355+ P2pNetworkIdentifyStreamEffectfulGetListenAddresses ,
355356 P2pNetworkKadBootstrapAppendRequest ,
356357 P2pNetworkKadBootstrapCreateRequests ,
357358 P2pNetworkKadBootstrapFinalizeRequests ,
@@ -435,20 +436,17 @@ pub enum ActionKind {
435436 P2pNetworkSchedulerOutgoingDidConnect ,
436437 P2pNetworkSchedulerPrune ,
437438 P2pNetworkSchedulerPruneStream ,
438- P2pNetworkSchedulerPruneStreams ,
439439 P2pNetworkSchedulerSelectDone ,
440440 P2pNetworkSchedulerSelectError ,
441441 P2pNetworkSchedulerYamuxDidInit ,
442442 P2pNetworkSchedulerEffectfulDisconnect ,
443- P2pNetworkSchedulerEffectfulError ,
444443 P2pNetworkSchedulerEffectfulIncomingConnectionIsReady ,
445444 P2pNetworkSchedulerEffectfulIncomingDataIsReady ,
446445 P2pNetworkSchedulerEffectfulIncomingDidAccept ,
447446 P2pNetworkSchedulerEffectfulInterfaceDetected ,
448447 P2pNetworkSchedulerEffectfulNoiseSelectDone ,
449448 P2pNetworkSchedulerEffectfulOutgoingConnect ,
450449 P2pNetworkSchedulerEffectfulOutgoingDidConnect ,
451- P2pNetworkSchedulerEffectfulSelectError ,
452450 P2pNetworkSelectIncomingData ,
453451 P2pNetworkSelectIncomingDataAuth ,
454452 P2pNetworkSelectIncomingDataMux ,
@@ -688,7 +686,7 @@ pub enum ActionKind {
688686}
689687
690688impl ActionKind {
691- pub const COUNT : u16 = 579 ;
689+ pub const COUNT : u16 = 577 ;
692690}
693691
694692impl std:: fmt:: Display for ActionKind {
@@ -1804,7 +1802,6 @@ impl ActionKindGet for P2pNetworkSchedulerAction {
18041802 Self :: Error { .. } => ActionKind :: P2pNetworkSchedulerError ,
18051803 Self :: Disconnected { .. } => ActionKind :: P2pNetworkSchedulerDisconnected ,
18061804 Self :: Prune { .. } => ActionKind :: P2pNetworkSchedulerPrune ,
1807- Self :: PruneStreams { .. } => ActionKind :: P2pNetworkSchedulerPruneStreams ,
18081805 Self :: PruneStream { .. } => ActionKind :: P2pNetworkSchedulerPruneStream ,
18091806 }
18101807 }
@@ -1925,7 +1922,7 @@ impl ActionKindGet for P2pNetworkRpcAction {
19251922impl ActionKindGet for P2pConnectionOutgoingEffectfulAction {
19261923 fn kind ( & self ) -> ActionKind {
19271924 match self {
1928- Self :: RandomInit => ActionKind :: P2pConnectionOutgoingEffectfulRandomInit ,
1925+ Self :: RandomInit { .. } => ActionKind :: P2pConnectionOutgoingEffectfulRandomInit ,
19291926 Self :: Init { .. } => ActionKind :: P2pConnectionOutgoingEffectfulInit ,
19301927 Self :: OfferSend { .. } => ActionKind :: P2pConnectionOutgoingEffectfulOfferSend ,
19311928 Self :: AnswerSet { .. } => ActionKind :: P2pConnectionOutgoingEffectfulAnswerSet ,
@@ -1973,9 +1970,7 @@ impl ActionKindGet for P2pNetworkSchedulerEffectfulAction {
19731970 ActionKind :: P2pNetworkSchedulerEffectfulIncomingDataIsReady
19741971 }
19751972 Self :: NoiseSelectDone { .. } => ActionKind :: P2pNetworkSchedulerEffectfulNoiseSelectDone ,
1976- Self :: SelectError { .. } => ActionKind :: P2pNetworkSchedulerEffectfulSelectError ,
19771973 Self :: Disconnect { .. } => ActionKind :: P2pNetworkSchedulerEffectfulDisconnect ,
1978- Self :: Error { .. } => ActionKind :: P2pNetworkSchedulerEffectfulError ,
19791974 }
19801975 }
19811976}
@@ -2034,6 +2029,7 @@ impl ActionKindGet for P2pNetworkIdentifyStreamAction {
20342029 Self :: Close { .. } => ActionKind :: P2pNetworkIdentifyStreamClose ,
20352030 Self :: RemoteClose { .. } => ActionKind :: P2pNetworkIdentifyStreamRemoteClose ,
20362031 Self :: Prune { .. } => ActionKind :: P2pNetworkIdentifyStreamPrune ,
2032+ Self :: SendIdentify { .. } => ActionKind :: P2pNetworkIdentifyStreamSendIdentify ,
20372033 }
20382034 }
20392035}
@@ -2102,7 +2098,9 @@ impl ActionKindGet for P2pNetworkKademliaStreamAction {
21022098impl ActionKindGet for P2pNetworkIdentifyStreamEffectfulAction {
21032099 fn kind ( & self ) -> ActionKind {
21042100 match self {
2105- Self :: SendIdentify { .. } => ActionKind :: P2pNetworkIdentifyStreamEffectfulSendIdentify ,
2101+ Self :: GetListenAddresses { .. } => {
2102+ ActionKind :: P2pNetworkIdentifyStreamEffectfulGetListenAddresses
2103+ }
21062104 }
21072105 }
21082106}
0 commit comments