RE: IPV6 related constants for netlink socket

2012-10-31 Thread Murali Annamneni
Hi,

I'm trying to create a Netlink socket to configure an ipv6 interface.
The socket call I used is -

socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE6);

I'm getting compiler error error: NETLINK_ROUTE6 undeclared (first use in this 
function)
And I'm facing the same problem for AF_NETLINK6.

I grep'ed in source code of 2.6.32 kernel and system header files, I didn't 
find anywhere these constants.
Are these constants are correct ? If not, what are the correct one's and in 
which header file I can find them.

Thanks  Regards
Murali Annamneni



::DISCLAIMER::


The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only.
E-mail transmission is not guaranteed to be secure or error-free as information 
could be intercepted, corrupted,
lost, destroyed, arrive late or incomplete, or may contain viruses in 
transmission. The e mail and its contents
(with or without referred errors) shall therefore not attach any liability on 
the originator or HCL or its affiliates.
Views or opinions, if any, presented in this email are solely those of the 
author and may not necessarily reflect the
views or opinions of HCL or its affiliates. Any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and / or publication of this message without the prior written 
consent of authorized representative of
HCL is strictly prohibited. If you have received this email in error please 
delete it and notify the sender immediately.
Before opening any email and/or attachments, please check them for viruses and 
other defects.


___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


IPV6 related constants for netlink socket

2012-10-31 Thread Murali Annamneni
Hi,

I'm trying to create a Netlink socket to configure an ipv6 interface.
The socket call I used is -

socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE6);

I'm getting compiler error error: NETLINK_ROUTE6 undeclared (first use in this 
function)
And I'm facing the same problem for AF_NETLINK6.

I grep'ed in source code of 2.6.32 kernel and system header files, I didn't 
find anywhere these constants.
Are these constants are correct ? If not, what are the correct one's and in 
which header file I can find them.

Thanks  Regards
Murali Annamneni



::DISCLAIMER::


The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only.
E-mail transmission is not guaranteed to be secure or error-free as information 
could be intercepted, corrupted,
lost, destroyed, arrive late or incomplete, or may contain viruses in 
transmission. The e mail and its contents
(with or without referred errors) shall therefore not attach any liability on 
the originator or HCL or its affiliates.
Views or opinions, if any, presented in this email are solely those of the 
author and may not necessarily reflect the
views or opinions of HCL or its affiliates. Any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and / or publication of this message without the prior written 
consent of authorized representative of
HCL is strictly prohibited. If you have received this email in error please 
delete it and notify the sender immediately.
Before opening any email and/or attachments, please check them for viruses and 
other defects.


___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


Re: IPV6 related constants for netlink socket

2012-10-31 Thread Kristof Provost
On 2012-10-31 15:20:58 (+0530), Murali Annamneni a.mur...@hcl.com wrote:
 I'm trying to create a Netlink socket to configure an ipv6 interface.
 The socket call I used is -
 
 socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE6);
 
 I'm getting compiler error error: NETLINK_ROUTE6 undeclared (first use in 
 this function)
 And I'm facing the same problem for AF_NETLINK6.
 
That'd be because NETLINK_ROUTE6 and AF_NETLINK6 don't actually exist.

 I grep'ed in source code of 2.6.32 kernel and system header files, I
 didn't find anywhere these constants.  Are these constants are correct
 ? If not, what are the correct one's and in which header file I can
 find them.

Take a look at rtnetlink_rcv_msg() in net/core/rtnetlink.c
One of the things it extracts from the netlink message is the family. In
other words, you need to create a plain NETLINK_ROUTE socket, and
specify the family in the message itself. You can use the same socket
for both IPv4 and IPv6.

(My comments reflect the current kernel, but they're probably also valid
for 2.6.32)

Regards,
Kristof

___
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies