← Back to team overview

hipl-core team mailing list archive

Re: [Branch ~hipl-core/hipl/trunk] Rev 4885: Replace all occurences of "in6_addr_t" with "struct in6_addr_t"

 

On Tue, Aug 17, 2010 at 05:31:26PM +0000, noreply@xxxxxxxxxxxxx wrote:
> 
> --- hipd/hiprelay.h	2010-07-07 16:42:17 +0000
> +++ hipd/hiprelay.h	2010-08-17 17:23:18 +0000
> @@ -72,7 +72,7 @@
>      /** IP address of Responder (Relay Client) */
> -    in6_addr_t       ip_r;
> +    struct in6_addr       ip_r;
>      /** Client UDP port received in I2 packet of registration. */
> === modified file 'hipd/user.c'
> --- hipd/user.c	2010-07-07 16:42:17 +0000
> +++ hipd/user.c	2010-08-17 17:23:18 +0000
> @@ -398,7 +398,7 @@
>          uint8_t *reg_types                 = NULL;
> -        in6_addr_t *dst_ip                 = NULL;
> +        struct in6_addr *dst_ip                 = NULL;
>          int i                              = 0, type_count = 0;
> 
> === modified file 'lib/core/conf.c'
> --- lib/core/conf.c	2010-08-10 08:21:47 +0000
> +++ lib/core/conf.c	2010-08-17 17:23:18 +0000
> @@ -254,7 +254,7 @@
>      struct in_addr *deflsi               = NULL;
> -    in6_addr_t *defhit                   = NULL;
> +    struct in6_addr *defhit                   = NULL;
>      hip_tlv_type_t param_type            = 0;

This was previously vertically aligned, please restore
the alignment.

Diego