static void complete_one(struct sync_record *s, char *sname, uint32 stype, char *comment) { struct work_record *work; struct server_record *servrec; stype &= ~SV_TYPE_LOCAL_LIST_ONLY; if (stype & SV_TYPE_DOMAIN_ENUM) { /* See if we can find the workgroup on this subnet. */ if((work=find_workgroup_on_subnet(unicast_subnet, sname))) { /* We already know about this workgroup - update the ttl. */ update_workgroup_ttl(work,lp_max_ttl()); } else { /* Create the workgroup on the subnet. */ work = create_workgroup_on_subnet(unicast_subnet, sname, lp_max_ttl()); if (work) { /* remember who the master is */ unstrcpy(work->local_master_browser_name, comment); } } return; } work = find_workgroup_on_subnet(unicast_subnet, s->workgroup); if (!work) { DEBUG(3,("workgroup %s doesn't exist on unicast subnet?\n", s->workgroup)); return; } if ((servrec = find_server_in_workgroup( work, sname))) { /* Check that this is not a locally known server - if so ignore the entry. */ if(!(servrec->serv.type & SV_TYPE_LOCAL_LIST_ONLY)) { /* We already know about this server - update the ttl. */ update_server_ttl(servrec, lp_max_ttl()); /* Update the type. */ servrec->serv.type = stype; } return; } /* Create the server in the workgroup. */ create_server_on_workgroup(work, sname,stype, lp_max_ttl(), comment); }
static void multihomed_register_name(struct nmb_name *nmbname, uint16 nb_flags, register_name_success_function success_fn, register_name_fail_function fail_fn) { /* If we are adding a group name, we just send multiple register name packets to the WINS server (this is an internet group name. If we are adding a unique name, We need first to add our names to the unicast subnet namelist. This is because when a WINS server receives a multihomed registration request, the first thing it does is to send a name query to the registering machine, to see if it has put the name in it's local namelist. We need the name there so the query response code in nmbd_incomingrequests.c will find it. We are adding this name prematurely (we don't really have it yet), but as this is on the unicast subnet only we will get away with this (only the WINS server will ever query names from us on this subnet). */ int num_ips=0; int i, t; struct subnet_record *subrec; char **wins_tags; struct in_addr *ip_list; unstring name; for(subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec) ) num_ips++; if((ip_list = SMB_MALLOC_ARRAY(struct in_addr, num_ips))==NULL) { DEBUG(0,("multihomed_register_name: malloc fail !\n")); return; } for (subrec = FIRST_SUBNET, i = 0; subrec; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec), i++ ) { ip_list[i] = subrec->myip; } pull_ascii_nstring(name, sizeof(name), nmbname->name); add_name_to_subnet(unicast_subnet, name, nmbname->name_type, nb_flags, lp_max_ttl(), SELF_NAME, num_ips, ip_list); /* get the list of wins tags - we try to register for each of them */ wins_tags = wins_srv_tags(); /* Now try and register the name for each wins tag. Note that at this point we only register our first IP with each wins group. We will register the rest from wins_next_registration() when we get the reply for this one. That follows the way W2K does things (tridge) */ for (t=0; wins_tags && wins_tags[t]; t++) { multihomed_register_one(nmbname, nb_flags, success_fn, fail_fn, ip_list[0], wins_tags[t]); } wins_srv_tags_free(wins_tags); SAFE_FREE(ip_list); }