summaryrefslogtreecommitdiff
path: root/source4/libcli/wrepl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-09-28 09:58:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:39:06 -0500
commitf7c5e5a3987ea773203f6052e9cac34ae8992131 (patch)
treebf5d0cfbbf80f4e56585c249e86c16db28a98366 /source4/libcli/wrepl
parent2ca10397af6f5680f99997d9f92cd6356816376d (diff)
downloadsamba-f7c5e5a3987ea773203f6052e9cac34ae8992131.tar.gz
samba-f7c5e5a3987ea773203f6052e9cac34ae8992131.tar.bz2
samba-f7c5e5a3987ea773203f6052e9cac34ae8992131.zip
r10569: add all info that we have to wrepl_name, as we need it for replication :-)
metze (This used to be commit bfd548ca10134d5a17b87a0507917721aa251223)
Diffstat (limited to 'source4/libcli/wrepl')
-rw-r--r--source4/libcli/wrepl/winsrepl.c21
-rw-r--r--source4/libcli/wrepl/winsrepl.h4
2 files changed, 19 insertions, 6 deletions
diff --git a/source4/libcli/wrepl/winsrepl.c b/source4/libcli/wrepl/winsrepl.c
index 4284c5cdbb..069ee29407 100644
--- a/source4/libcli/wrepl/winsrepl.c
+++ b/source4/libcli/wrepl/winsrepl.c
@@ -729,7 +729,7 @@ NTSTATUS wrepl_pull_names_recv(struct wrepl_request *req,
status = NT_STATUS_NO_MEMORY;
io->out.names = talloc_array(packet, struct wrepl_name, io->out.num_names);
- if (io->out.names == NULL) goto failed;
+ if (io->out.names == NULL) goto nomem;
/* convert the list of names and addresses to a sane format */
for (i=0;i<io->out.num_names;i++) {
@@ -739,6 +739,12 @@ NTSTATUS wrepl_pull_names_recv(struct wrepl_request *req,
wname->name, wname->name_len);
if (!NT_STATUS_IS_OK(status)) goto failed;
+ name->flags = wname->flags;
+ name->group_flag= wname->group_flag;
+ name->version_id= wname->id;
+ name->owner = talloc_strdup(io->out.names, io->in.partner.address);
+ if (name->owner == NULL) goto nomem;
+
/* trying to save 1 or 2 bytes on the wire isn't a good idea */
if (wname->flags & 2) {
int j;
@@ -747,7 +753,7 @@ NTSTATUS wrepl_pull_names_recv(struct wrepl_request *req,
name->addresses = talloc_array(io->out.names,
struct wrepl_address,
name->num_addresses);
- if (name->addresses == NULL) goto failed;
+ if (name->addresses == NULL) goto nomem;
for (j=0;j<name->num_addresses;j++) {
name->addresses[j].owner =
talloc_steal(name->addresses,
@@ -759,16 +765,19 @@ NTSTATUS wrepl_pull_names_recv(struct wrepl_request *req,
} else {
name->num_addresses = 1;
name->addresses = talloc(io->out.names, struct wrepl_address);
- if (name->addresses == NULL) goto failed;
- name->addresses[0].owner = io->in.partner.address;
+ if (name->addresses == NULL) goto nomem;
+ name->addresses[0].owner = talloc_strdup(name->addresses,io->in.partner.address);
+ if (name->addresses[0].owner == NULL) goto nomem;
name->addresses[0].address = talloc_steal(name->addresses,
wname->addresses.ip);
}
}
talloc_steal(mem_ctx, io->out.names);
- status = NT_STATUS_OK;
-
+ talloc_free(packet);
+ return NT_STATUS_OK;
+nomem:
+ status = NT_STATUS_NO_MEMORY;
failed:
talloc_free(packet);
return status;
diff --git a/source4/libcli/wrepl/winsrepl.h b/source4/libcli/wrepl/winsrepl.h
index 64e09d61c6..2253fe181e 100644
--- a/source4/libcli/wrepl/winsrepl.h
+++ b/source4/libcli/wrepl/winsrepl.h
@@ -116,6 +116,10 @@ struct wrepl_pull_names {
uint32_t num_names;
struct wrepl_name {
struct nbt_name name;
+ uint32_t flags;
+ uint32_t group_flag;
+ uint64_t version_id;
+ const char *owner;
uint32_t num_addresses;
struct wrepl_address {
const char *owner;