Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
3f9fe07e
Commit
3f9fe07e
authored
Jun 15, 2006
by
Kai Vehmanen
Browse files
Fixed compile bug in bnf test unit tests.
darcs-hash:20060615172751-7659e-9c6ada84e7606288537859321fcb11fb2b07ac7c.gz
parent
466a9d49
Changes
1
Hide whitespace changes
Inline
Side-by-side
libsofia-sip-ua/bnf/torture_bnf.c
View file @
3f9fe07e
...
...
@@ -289,17 +289,17 @@ int host_test(void)
TEST
(
span_domain
(
"a.b.-"
),
0
);
TEST
(
span_domain
(
"a.b-"
),
0
);
TEST
(
host_is_local
host
(
"126.0.0.0"
),
0
);
TEST
(
host_is_local
host
(
"127.0.0.0"
),
1
);
TEST
(
host_is_local
host
(
"0.0.0.0"
),
0
);
TEST
(
host_is_local
host
(
"::1"
),
1
);
TEST
(
host_is_local
host
(
"::1"
),
1
);
TEST
(
host_is_local
host
(
"::1:3fff"
),
0
);
TEST
(
host_is_local
host
(
"[::1]"
),
1
);
TEST
(
host_is_local
host
(
"localdomain.domain.org"
),
0
);
TEST
(
host_is_local
host
(
"localhost.domain.org"
),
0
);
TEST
(
host_is_local
host
(
"localhost"
),
1
);
TEST
(
host_is_local
host
(
"localhost.localdomain"
),
1
);
TEST
(
host_is_local
(
"126.0.0.0"
),
0
);
TEST
(
host_is_local
(
"127.0.0.0"
),
1
);
TEST
(
host_is_local
(
"0.0.0.0"
),
0
);
TEST
(
host_is_local
(
"::1"
),
1
);
TEST
(
host_is_local
(
"::1"
),
1
);
TEST
(
host_is_local
(
"::1:3fff"
),
0
);
TEST
(
host_is_local
(
"[::1]"
),
1
);
TEST
(
host_is_local
(
"localdomain.domain.org"
),
0
);
TEST
(
host_is_local
(
"localhost.domain.org"
),
0
);
TEST
(
host_is_local
(
"localhost"
),
1
);
TEST
(
host_is_local
(
"localhost.localdomain"
),
1
);
TEST
(
host_has_domain_invalid
(
"invalid"
),
1
);
TEST
(
host_has_domain_invalid
(
"invalid."
),
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment