View | Details | Raw Unified | Return to bug 2125
Collapse All | Expand All

(-)a/src/click/model/ipv4-l3-click-protocol.cc (-1 / +1 lines)
 Lines 108-114    Link Here 
108
          this->SetNode (node);
108
          this->SetNode (node);
109
        }
109
        }
110
    }
110
    }
111
  Object::NotifyNewAggregate ();
111
  Ipv4::NotifyNewAggregate ();
112
}
112
}
113
113
114
void
114
void
(-)a/src/dsr/model/dsr-routing.cc (-1 / +1 lines)
 Lines 416-422    Link Here 
416
            }
416
            }
417
        }
417
        }
418
    }
418
    }
419
  Object::NotifyNewAggregate ();
419
  IpL4Protocol::NotifyNewAggregate ();
420
  Simulator::ScheduleNow (&DsrRouting::Start, this);
420
  Simulator::ScheduleNow (&DsrRouting::Start, this);
421
}
421
}
422
422
(-)a/src/internet/model/icmpv4-l4-protocol.cc (-1 / +1 lines)
 Lines 72-78    Link Here 
72
            }
72
            }
73
        }
73
        }
74
    }
74
    }
75
  Object::NotifyNewAggregate ();
75
  IpL4Protocol::NotifyNewAggregate ();
76
}
76
}
77
77
78
uint16_t 
78
uint16_t 
(-)a/src/internet/model/icmpv6-l4-protocol.cc (-1 / +1 lines)
 Lines 137-143    Link Here 
137
            }
137
            }
138
        }
138
        }
139
    }
139
    }
140
  Object::NotifyNewAggregate ();
140
  IpL4Protocol::NotifyNewAggregate ();
141
}
141
}
142
142
143
void Icmpv6L4Protocol::SetNode (Ptr<Node> node)
143
void Icmpv6L4Protocol::SetNode (Ptr<Node> node)
(-)a/src/internet/model/ipv4-l3-protocol.cc (-1 / +1 lines)
 Lines 197-203    Link Here 
197
          this->SetNode (node);
197
          this->SetNode (node);
198
        }
198
        }
199
    }
199
    }
200
  Object::NotifyNewAggregate ();
200
  Ipv4::NotifyNewAggregate ();
201
}
201
}
202
202
203
void 
203
void 
(-)a/src/internet/model/ipv6-l3-protocol.cc (-1 / +1 lines)
 Lines 693-699    Link Here 
693
          this->SetNode (node);
693
          this->SetNode (node);
694
        }
694
        }
695
    }
695
    }
696
  Object::NotifyNewAggregate ();
696
  Ipv6::NotifyNewAggregate ();
697
}
697
}
698
698
699
void Ipv6L3Protocol::SetNode (Ptr<Node> node)
699
void Ipv6L3Protocol::SetNode (Ptr<Node> node)
(-)a/src/internet/model/nsc-tcp-l4-protocol.cc (-1 / +1 lines)
 Lines 244-250    Link Here 
244
            }
244
            }
245
        }
245
        }
246
    }
246
    }
247
  Object::NotifyNewAggregate ();
247
  IpL4Protocol::NotifyNewAggregate ();
248
}
248
}
249
249
250
int 
250
int 
(-)a/src/internet/model/tcp-l4-protocol.cc (-1 / +1 lines)
 Lines 143-149    Link Here 
143
      ipv6->Insert(this);
143
      ipv6->Insert(this);
144
      this->SetDownTarget6(MakeCallback(&Ipv6L3Protocol::Send, ipv6));
144
      this->SetDownTarget6(MakeCallback(&Ipv6L3Protocol::Send, ipv6));
145
    }
145
    }
146
  Object::NotifyNewAggregate ();
146
  IpL4Protocol::NotifyNewAggregate ();
147
}
147
}
148
148
149
int 
149
int 
(-)a/src/internet/model/udp-l4-protocol.cc (-1 / +1 lines)
 Lines 120-126    Link Here 
120
      ipv6->Insert (this);
120
      ipv6->Insert (this);
121
      this->SetDownTarget6 (MakeCallback (&Ipv6L3Protocol::Send, ipv6));
121
      this->SetDownTarget6 (MakeCallback (&Ipv6L3Protocol::Send, ipv6));
122
    }
122
    }
123
  Object::NotifyNewAggregate ();
123
  IpL4Protocol::NotifyNewAggregate ();
124
}
124
}
125
125
126
int 
126
int 

Return to bug 2125