Filename changes needed by ZDS archiver

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1452 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-12-12 18:33:36 +00:00
parent 703a3b1e88
commit bb45db5b2e
34 changed files with 80 additions and 82 deletions
+5 -5
View File
@@ -38,7 +38,7 @@
ifeq ($(CONFIG_NET),y)
SOCK_ASRCS =
SOCK_CSRCS = socket.c bind.c connect.c sendto.c recv.c recvfrom.c \
net-sockets.c net-close.c
net_sockets.c net_close.c
ifeq ($(CONFIG_NET_TCP),y)
SOCK_CSRCS += send.c listen.c accept.c
@@ -47,14 +47,14 @@ endif
ifeq ($(CONFIG_NET_SOCKOPTS),y)
SOCK_CSRCS += setsockopt.c getsockopt.c
ifneq ($(CONFIG_DISABLE_CLOCK),y)
SOCK_CSRCS += net-timeo.c net-dsec2timeval.c net-timeval2dsec.c net-arptimer.c
SOCK_CSRCS += net_timeo.c net_dsec2timeval.c net_timeval2dsec.c net_arptimer.c
endif
endif
NETDEV_ASRCS =
NETDEV_CSRCS = netdev-register.c netdev-ioctl.c net-poll.c netdev-txnotify.c \
netdev-findbyname.c netdev-findbyaddr.c netdev-count.c \
netdev-foreach.c
NETDEV_CSRCS = netdev_register.c netdev_ioctl.c net_poll.c netdev_txnotify.c \
netdev_findbyname.c netdev_findbyaddr.c netdev_count.c \
netdev_foreach.c
include uip/Make.defs
endif
+1 -1
View File
@@ -50,7 +50,7 @@
#include <arch/irq.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/bind.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -44,7 +44,7 @@
#include <sys/socket.h>
#include <errno.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/connect.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -49,7 +49,7 @@
#include <arch/irq.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
#include "uip/uip-internal.h"
/****************************************************************************
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/getsockopt.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -44,7 +44,7 @@
#include <sys/socket.h>
#include <errno.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/listen.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -44,7 +44,7 @@
#include <sys/socket.h>
#include <errno.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+3 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net-arptimer.c
* net/net_arptimer.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -46,7 +46,7 @@
#include <net/uip/uip-arp.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
+3 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net-close.c
* net/net_close.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -49,7 +49,7 @@
#include <arch/irq.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
#include "uip/uip-internal.h"
/****************************************************************************
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net-dsec2timeval.c
* net/net_dsec2timeval.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <errno.h>
#include <nuttx/clock.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
@@ -47,8 +47,6 @@
#include <nuttx/net.h>
#include <net/uip/uip.h>
#include "net-internal.h"
/****************************************************************************
* Definitions
****************************************************************************/
+2 -2
View File
@@ -1,5 +1,5 @@
/****************************************************************************
* net/net-poll.c
* net/net_poll.c
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -54,7 +54,7 @@
#include <uip/uip-internal.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Pre-processor Definitions
+2 -2
View File
@@ -1,5 +1,5 @@
/****************************************************************************
* net-sockets.c
* net_sockets.c
*
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -51,7 +51,7 @@
#include <nuttx/net.h>
#include <nuttx/kmalloc.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
+3 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net-timeo.c
* net/net_timeo.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <nuttx/clock.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/net-timeval2dsec.c
* net/net_timeval2dsec.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <errno.h>
#include <nuttx/clock.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+3 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-count.c
* net/netdev_count.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -46,7 +46,7 @@
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-findbyaddr.c
* net/netdev_findbyaddr.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -47,7 +47,7 @@
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-findbyname.c
* net/netdev_findbyname.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -46,7 +46,7 @@
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-foreach.c
* net/netdev_foreach.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <nuttx/net.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
+3 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-ioctl.c
* net/netdev_ioctl.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -55,7 +55,7 @@
#include <net/uip/uip-arch.h>
#include <net/uip/uip.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-register.c
* net/netdev_register.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -53,7 +53,7 @@
#include <net/ethernet.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
@@ -1,7 +1,7 @@
/****************************************************************************
* net/netdev-txnotify.c
* net/netdev_txnotify.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -47,7 +47,7 @@
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Definitions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/recv.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -44,7 +44,7 @@
#include <sys/socket.h>
#include <errno.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+1 -1
View File
@@ -51,7 +51,7 @@
#include <nuttx/clock.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
#include "uip/uip-internal.h"
/****************************************************************************
+1 -1
View File
@@ -51,7 +51,7 @@
#include <nuttx/clock.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
#include "uip/uip-internal.h"
/****************************************************************************
+1 -1
View File
@@ -48,7 +48,7 @@
#include <arch/irq.h>
#include <net/uip/uip-arch.h>
#include "net-internal.h"
#include "net_internal.h"
#include "uip/uip-internal.h"
/****************************************************************************
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/setsockopt.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <errno.h>
#include <arch/irq.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/socket.c
*
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@
#include <errno.h>
#include <debug.h>
#include "net-internal.h"
#include "net_internal.h"
/****************************************************************************
* Global Functions