File tree 1 file changed +8
-12
lines changed
1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -475,8 +475,8 @@ func (p *Pinger) run(ctx context.Context, conn packetConn) error {
475
475
recv := make (chan * packet , 5 )
476
476
defer close (recv )
477
477
478
- if handler := p .OnSetup ; handler != nil {
479
- handler ()
478
+ if p .OnSetup != nil {
479
+ p . OnSetup ()
480
480
}
481
481
482
482
g , ctx := errgroup .WithContext (ctx )
@@ -571,10 +571,8 @@ func (p *Pinger) Stop() {
571
571
}
572
572
573
573
func (p * Pinger ) finish () {
574
- handler := p .OnFinish
575
- if handler != nil {
576
- s := p .Statistics ()
577
- handler (s )
574
+ if p .OnFinish != nil {
575
+ p .OnFinish (p .Statistics ())
578
576
}
579
577
}
580
578
@@ -752,9 +750,8 @@ func (p *Pinger) processPacket(recv *packet) error {
752
750
return fmt .Errorf ("invalid ICMP echo reply; type: '%T', '%v'" , pkt , pkt )
753
751
}
754
752
755
- handler := p .OnRecv
756
- if handler != nil {
757
- handler (inPkt )
753
+ if p .OnRecv != nil {
754
+ p .OnRecv (inPkt )
758
755
}
759
756
760
757
return nil
@@ -802,16 +799,15 @@ func (p *Pinger) sendICMP(conn packetConn) error {
802
799
}
803
800
return err
804
801
}
805
- handler := p .OnSend
806
- if handler != nil {
802
+ if p .OnSend != nil {
807
803
outPkt := & Packet {
808
804
Nbytes : len (msgBytes ),
809
805
IPAddr : p .ipaddr ,
810
806
Addr : p .addr ,
811
807
Seq : p .sequence ,
812
808
ID : p .id ,
813
809
}
814
- handler (outPkt )
810
+ p . OnSend (outPkt )
815
811
}
816
812
// mark this sequence as in-flight
817
813
p.awaitingSequences [currentUUID ][p.sequence ] = struct {}{}
You can’t perform that action at this time.
0 commit comments