Logan oos Even
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
tools/tests-wire.c
|
@ -69,7 +69,8 @@ void init_common(n2n_common_t *common, char *community) { |
|
|
memset( common, 0, sizeof(*common) ); |
|
|
memset( common, 0, sizeof(*common) ); |
|
|
common->ttl = N2N_DEFAULT_TTL; |
|
|
common->ttl = N2N_DEFAULT_TTL; |
|
|
common->flags = 0; |
|
|
common->flags = 0; |
|
|
strncpy( (char *)common->community, community, N2N_COMMUNITY_SIZE ); |
|
|
strncpy( (char *)common->community, community, N2N_COMMUNITY_SIZE); |
|
|
|
|
|
common->community[N2N_COMMUNITY_SIZE - 1] = '\0'; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void print_common(char *test_name, n2n_common_t *common) { |
|
|
void print_common(char *test_name, n2n_common_t *common) { |
|
|