Skip to content

Commit 0ce0e4e

Browse files
authored
Remove unnecessary handler allocations (#47)
Cleanup unnecessary creation of `handler` vars for various event handlers. Signed-off-by: SuperQ <[email protected]>
1 parent dbf2bca commit 0ce0e4e

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

ping.go

+8-12
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,8 @@ func (p *Pinger) run(ctx context.Context, conn packetConn) error {
475475
recv := make(chan *packet, 5)
476476
defer close(recv)
477477

478-
if handler := p.OnSetup; handler != nil {
479-
handler()
478+
if p.OnSetup != nil {
479+
p.OnSetup()
480480
}
481481

482482
g, ctx := errgroup.WithContext(ctx)
@@ -571,10 +571,8 @@ func (p *Pinger) Stop() {
571571
}
572572

573573
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())
578576
}
579577
}
580578

@@ -752,9 +750,8 @@ func (p *Pinger) processPacket(recv *packet) error {
752750
return fmt.Errorf("invalid ICMP echo reply; type: '%T', '%v'", pkt, pkt)
753751
}
754752

755-
handler := p.OnRecv
756-
if handler != nil {
757-
handler(inPkt)
753+
if p.OnRecv != nil {
754+
p.OnRecv(inPkt)
758755
}
759756

760757
return nil
@@ -802,16 +799,15 @@ func (p *Pinger) sendICMP(conn packetConn) error {
802799
}
803800
return err
804801
}
805-
handler := p.OnSend
806-
if handler != nil {
802+
if p.OnSend != nil {
807803
outPkt := &Packet{
808804
Nbytes: len(msgBytes),
809805
IPAddr: p.ipaddr,
810806
Addr: p.addr,
811807
Seq: p.sequence,
812808
ID: p.id,
813809
}
814-
handler(outPkt)
810+
p.OnSend(outPkt)
815811
}
816812
// mark this sequence as in-flight
817813
p.awaitingSequences[currentUUID][p.sequence] = struct{}{}

0 commit comments

Comments
 (0)