Lines Matching defs:entry

186  * To comply with RFC 4120 section 6.2.1, entry->dqe_fqdn is converted
192 dyndns_qentry_t *entry;
197 if ((entry = malloc(sizeof (dyndns_qentry_t))) == NULL)
200 bzero(entry, sizeof (dyndns_qentry_t));
201 entry->dqe_op = op;
202 (void) strlcpy(entry->dqe_fqdn, fqdn, MAXNAMELEN);
203 (void) smb_strlwr(entry->dqe_fqdn);
210 list_insert_tail(&dyndns_queue.ddq_list, entry);
214 free(entry);
227 dyndns_qentry_t *entry;
229 while ((entry = list_head(lst)) != NULL) {
230 list_remove(lst, entry);
231 free(entry);
237 * variable until notified that an entry needs to be updated.
246 dyndns_qentry_t *entry;
278 while ((entry = list_head(&dyndns_queue.ddq_list)) != NULL) {
279 list_remove(&dyndns_queue.ddq_list, entry);
280 list_insert_tail(&publist, entry);
305 dyndns_qentry_t *entry;
307 while ((entry = list_head(publist)) != NULL) {
316 list_remove(publist, entry);
318 switch (entry->dqe_op) {
320 (void) dyndns_clear_rev_zone(entry->dqe_fqdn);
323 (void) dyndns_update_core(entry->dqe_fqdn);
329 free(entry);
392 { NXDOMAIN, "entry should exist but does not exist" },
395 { YXDOMAIN, "entry should not exist but does exist" },
651 * ttl : time-to-live, cached time of this entry by others and not
655 * add_del : UPDATE_ADD for adding entry, UPDATE_DEL for removing zone
656 * del_type: DEL_ONE for deleting one entry, DEL_ALL for deleting all
1193 * life_time : cached time of this entry by others and not within DNS
1195 * update_type: UPDATE_ADD to add entry, UPDATE_DEL to remove entry
1196 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all
1356 * life_time : cached time of this entry by others and not within DNS
1358 * update_type: UPDATE_ADD to add entry, UPDATE_DEL to remove entry
1359 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all
1408 * life_time : cached time of this entry by others and not within DNS
1410 * update_type: UPDATE_ADD to add entry, UPDATE_DEL to remove entry
1411 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all
1528 * life_time : cached time of this entry by others and not within DNS
1532 * update_type : UPDATE_ADD for adding entry, UPDATE_DEL for removing entry
1533 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all
1656 * Query DNS server for entry. This routine can indicate if an entry exist
1658 * of the entry matched. For example, for forward lookup, the entry is
1660 * lookup, the entry is searched using the IP address and the data is the
1666 * update_type: UPDATE_ADD for adding entry, UPDATE_DEL for removing entry
1669 * is_match: is 1 for found matching entry, otherwise 0
1670 * 1 : an entry exist but not necessarily match
1671 * 0 : an entry does not exist
1741 /* entry does not exist */
1753 * purged. DNS may be used to check to see if an entry already exist before
1754 * adding or to see if an entry does exist before removing it. Adding
1761 * life_time : cached time of this entry by others and not within DNS
1763 * update_type: UPDATE_ADD to add entry, UPDATE_DEL to remove entry
1766 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all
1875 * Main routine to add an entry into DNS. The attempt will be made on the
1886 * life_time : cached time of this entry by others and not within DNS
1932 * Main routine to remove an entry or all entries of the same resource name
1941 * del_type : DEL_ONE for deleting one entry, DEL_ALL for deleting all