mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Socket I/F: Cleanup for good CONFIG_NET_PKT build.
This commit is contained in:
parent
47aed25836
commit
7441c5422f
5 changed files with 18 additions and 2 deletions
|
|
@ -66,6 +66,8 @@
|
|||
# define PF_INETX PF_INET6
|
||||
#elif defined(CONFIG_NET_LOCAL)
|
||||
# define PF_INETX PF_LOCAL
|
||||
#elif defined(CONFIG_NET_PKT)
|
||||
# define PF_INETX PF_PACKET
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/****************************************************************************
|
||||
* netutils/netlib/netlib_getmacaddr.c
|
||||
*
|
||||
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007-2009, 2011, 2017 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
@ -63,6 +63,8 @@
|
|||
# define PF_INETX PF_INET
|
||||
#elif defined(CONFIG_NET_IPv6)
|
||||
# define PF_INETX PF_INET6
|
||||
#elif defined(CONFIG_NET_PKT)
|
||||
# define PF_INETX PF_PACKET
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -65,6 +65,8 @@
|
|||
# define PF_INETX PF_INET6
|
||||
#elif defined(CONFIG_NET_LOCAL)
|
||||
# define PF_INETX PF_LOCAL
|
||||
#elif defined(CONFIG_NET_PKT)
|
||||
# define PF_INETX PF_PACKET
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/****************************************************************************
|
||||
* netutils/netlib/netlib_setmacaddr.c
|
||||
*
|
||||
* Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007-2009, 2011-2012, 2017 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
@ -66,6 +66,9 @@
|
|||
#elif defined(CONFIG_NET_IPv6)
|
||||
# define PF_INETX PF_INET6
|
||||
# define AF_INETX AF_INET6
|
||||
#elif defined(CONFIG_NET_PKT)
|
||||
# define PF_INETX PF_PACKET
|
||||
# define AF_INETX AF_PACKET
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -1096,6 +1096,13 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if !defined(CONFIG_NET_IPv4) && !defined(CONFIG_NET_IPv6)
|
||||
UNUSED(hostip);
|
||||
UNUSED(mask);
|
||||
UNUSED(gwip);
|
||||
UNUSED(gip);
|
||||
#endif
|
||||
|
||||
return OK;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue