Lines Matching refs:newRR

4160 	AuthRecord *newRR = (AuthRecord*)authPtr;  in RecordRegistrationCallback()  local
4167 if (ptr == newRR) break; in RecordRegistrationCallback()
4175 if (newRR->uDNS_info.state == regState_Cancelled) in RecordRegistrationCallback()
4179 newRR->resrec.name->c, newRR->resrec.rrtype); in RecordRegistrationCallback()
4180 newRR->uDNS_info.state = regState_Unregistered; in RecordRegistrationCallback()
4181 unlinkAR(&u->RecordRegistrations, newRR); in RecordRegistrationCallback()
4191 if (newRR->resrec.rrclass != zoneData->zoneClass) in RecordRegistrationCallback()
4194 newRR->resrec.rrclass, zoneData->zoneClass); in RecordRegistrationCallback()
4204 newRR->resrec.name->c, zoneData->zoneName.c); in RecordRegistrationCallback()
4210 AssignDomainName(&newRR->uDNS_info.zone, &zoneData->zoneName); in RecordRegistrationCallback()
4211 newRR->uDNS_info.ns = zoneData->primaryAddr; in RecordRegistrationCallback()
4212 if (zoneData->updatePort.NotAnInteger) newRR->uDNS_info.port = zoneData->updatePort; in RecordRegistrationCallback()
4216 newRR->uDNS_info.port = UnicastDNSPort; in RecordRegistrationCallback()
4217 newRR->uDNS_info.lease = mDNSfalse; in RecordRegistrationCallback()
4220 sendRecordRegistration(m, newRR); in RecordRegistrationCallback()
4224 if (newRR->uDNS_info.state != regState_Unregistered) in RecordRegistrationCallback()
4226 unlinkAR(&u->RecordRegistrations, newRR); in RecordRegistrationCallback()
4227 newRR->uDNS_info.state = regState_Unregistered; in RecordRegistrationCallback()
4230 if (newRR->RecordCallback) in RecordRegistrationCallback()
4231 newRR->RecordCallback(m, newRR, err); in RecordRegistrationCallback()