Make file name convention consistent
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@335 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
a3d199f7ac
commit
09d6450ab3
16 changed files with 20 additions and 20 deletions
|
|
@ -41,12 +41,12 @@ MKDEP = $(TOPDIR)/tools/mkdeps.sh
|
|||
ifeq ($(CONFIG_NET),y)
|
||||
STD_ASRCS =
|
||||
STD_CSRCS = socket.c bind.c connect.c send.c sendto.c recv.c recvfrom.c \
|
||||
net_sockets.c net-close.c
|
||||
net-sockets.c net-close.c
|
||||
|
||||
ifeq ($(CONFIG_NET_SOCKOPTS),y)
|
||||
STD_CSRCS += setsockopt.c getsockopt.c
|
||||
ifneq ($(CONFIG_DISABLE_CLOCK),y)
|
||||
STD_CSRCS += net_timeout.c net_dsec2timeval.c net_timeval2dsec.c
|
||||
STD_CSRCS += net-timeout.c net-dsec2timeval.c net-timeval2dsec.c
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* net_internal.h
|
||||
* net-internal.h
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
#include <nuttx/net.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
|
|
@ -113,7 +113,7 @@ extern "C" {
|
|||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/* net_sockets.c *************************************************************/
|
||||
/* net-sockets.c *************************************************************/
|
||||
|
||||
EXTERN void weak_function net_initialize(void);
|
||||
EXTERN int sockfd_allocate(void);
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* net_sockets.c
|
||||
* net-sockets.c
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
#include <errno.h>
|
||||
#include <nuttx/net.h>
|
||||
#include <nuttx/kmalloc.h>
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <nuttx/os_external.h>
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
#include <errno.h>
|
||||
#include <arch/irq.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
#include <errno.h>
|
||||
#include <arch/irq.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include <sys/socket.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "net_internal.h"
|
||||
#include "net-internal.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue