mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
Fix default NAT64 address
Typoed the RFC prefix. Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
This commit is contained in:
@@ -82,7 +82,7 @@ static int parse_arguments(int argc, char *argv[], struct nat64_user_config *con
|
||||
/* Default to special prefix 64:ff9b::/96 */
|
||||
config->c.v6_prefix.s6_addr[1] = 0x64;
|
||||
config->c.v6_prefix.s6_addr[2] = 0xff;
|
||||
config->c.v6_prefix.s6_addr[3] = 0x0b;
|
||||
config->c.v6_prefix.s6_addr[3] = 0x9b;
|
||||
|
||||
while ((opt = getopt_long(argc, argv, "i:6:4:t:a:hu", long_options,
|
||||
NULL)) != -1) {
|
||||
|
Reference in New Issue
Block a user