mirror of
https://github.com/samba-team/samba.git
synced 2025-11-06 08:23:50 +03:00
r12413: do some testing with 0x1E names
metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
66b57f5fbf
commit
b96eadb890
@@ -113,6 +113,7 @@ static BOOL nbt_test_wins_name(TALLOC_CTX *mem_ctx, const char *address,
|
||||
|
||||
if (name->type != NBT_NAME_MASTER &&
|
||||
name->type != NBT_NAME_LOGON &&
|
||||
name->type != NBT_NAME_BROWSER &&
|
||||
(nb_flags & NBT_NM_GROUP)) {
|
||||
printf("Try to register as non-group\n");
|
||||
io.in.nb_flags &= ~NBT_NM_GROUP;
|
||||
@@ -291,7 +292,7 @@ static BOOL nbt_test_wins(TALLOC_CTX *mem_ctx, const char *address)
|
||||
{
|
||||
struct nbt_name name;
|
||||
BOOL ret = True;
|
||||
uint32_t r = (unsigned)(random() % (100000));
|
||||
uint32_t r = (uint32_t)(random() % (100000));
|
||||
|
||||
name.name = talloc_asprintf(mem_ctx, "_TORTURE-%5u", r);
|
||||
|
||||
@@ -307,6 +308,9 @@ static BOOL nbt_test_wins(TALLOC_CTX *mem_ctx, const char *address)
|
||||
name.type = NBT_NAME_LOGON;
|
||||
ret &= nbt_test_wins_name(mem_ctx, address, &name, NBT_NODE_H | NBT_NM_GROUP);
|
||||
|
||||
name.type = NBT_NAME_BROWSER;
|
||||
ret &= nbt_test_wins_name(mem_ctx, address, &name, NBT_NODE_H | NBT_NM_GROUP);
|
||||
|
||||
name.scope = "example";
|
||||
name.type = 0x72;
|
||||
ret &= nbt_test_wins_name(mem_ctx, address, &name, NBT_NODE_H);
|
||||
|
||||
Reference in New Issue
Block a user