On Wed, Sep 20, 2017 at 5:04 PM, Harald Welte wrote:
> Hi Tom,
>
> On Wed, Sep 20, 2017 at 01:40:54PM -0700, Tom Herbert wrote:
>> On Wed, Sep 20, 2017 at 12:45 PM, David Miller wrote:
>> > There is a socket associated with the tunnel to do the encapsulation
>> > and it has an address family, rig
Hi Tom,
On Wed, Sep 20, 2017 at 01:40:54PM -0700, Tom Herbert wrote:
> On Wed, Sep 20, 2017 at 12:45 PM, David Miller wrote:
> > There is a socket associated with the tunnel to do the encapsulation
> > and it has an address family, right?
>
> If fd's are set from userspace for the sockets then w
On Wed, Sep 20, 2017 at 12:45 PM, David Miller wrote:
> From: Tom Herbert
> Date: Wed, 20 Sep 2017 11:03:52 -0700
>
>> On Mon, Sep 18, 2017 at 9:19 PM, David Miller wrote:
>>> From: Tom Herbert
>>> Date: Mon, 18 Sep 2017 17:38:58 -0700
>>>
Allow peers to be specified by IPv6 addresses.
>>>
From: Tom Herbert
Date: Wed, 20 Sep 2017 11:03:52 -0700
> On Mon, Sep 18, 2017 at 9:19 PM, David Miller wrote:
>> From: Tom Herbert
>> Date: Mon, 18 Sep 2017 17:38:58 -0700
>>
>>> Allow peers to be specified by IPv6 addresses.
>>>
>>> Signed-off-by: Tom Herbert
>>
>> Hmmm, can you just check t
On Mon, Sep 18, 2017 at 9:19 PM, David Miller wrote:
> From: Tom Herbert
> Date: Mon, 18 Sep 2017 17:38:58 -0700
>
>> Allow peers to be specified by IPv6 addresses.
>>
>> Signed-off-by: Tom Herbert
>
> Hmmm, can you just check the socket family or something like that?
I'm not sure what code you
Hi Tom,
On Mon, Sep 18, 2017 at 05:38:58PM -0700, Tom Herbert wrote:
> Allow peers to be specified by IPv6 addresses.
> + u16 peer_af;
> + union {
> + struct in_addr peer_addr_ip4;
> + struct in6_addr peer_addr_ip6;
> + };
this will not re
From: Tom Herbert
Date: Mon, 18 Sep 2017 17:38:58 -0700
> Allow peers to be specified by IPv6 addresses.
>
> Signed-off-by: Tom Herbert
Hmmm, can you just check the socket family or something like that?
Allow peers to be specified by IPv6 addresses.
Signed-off-by: Tom Herbert
---
drivers/net/gtp.c| 198 +--
include/uapi/linux/gtp.h | 1 +
include/uapi/linux/if_link.h | 3 +
3 files changed, 158 insertions(+), 44 deletions(-)
diff --gi