Removed old Id: tags in 4 non-source-code files.

This commit is contained in:
likewise 2002-10-19 19:48:06 +00:00
parent fea27fd743
commit 58cb89d261
4 changed files with 45 additions and 55 deletions

View File

@ -2,8 +2,6 @@ Raw TCP/IP interface for lwIP 0.5
Author: Adam Dunkels Author: Adam Dunkels
$Id: rawapi.txt,v 1.1 2002/10/19 12:59:32 likewise Exp $
lwIP provides two Application Program's Interfaces (APIs) for programs lwIP provides two Application Program's Interfaces (APIs) for programs
to use for communication with the TCP/IP code: the sequential API to use for communication with the TCP/IP code: the sequential API
(often just called "the API") and the raw TCP/IP interface. This (often just called "the API") and the raw TCP/IP interface. This

View File

@ -2,8 +2,6 @@ sys_arch interface for lwIP 0.5
Author: Adam Dunkels Author: Adam Dunkels
$Id: sys_arch.txt,v 1.1 2002/10/19 12:59:33 likewise Exp $
The operating system emulation layer provides a common interface The operating system emulation layer provides a common interface
between the lwIP code and the underlying operating system kernel. The between the lwIP code and the underlying operating system kernel. The
general idea is that porting lwIP to new architectures requires only general idea is that porting lwIP to new architectures requires only

View File

@ -1,37 +1,34 @@
# Copyright (c) 2001, Swedish Institute of Computer Science. #
# Copyright (c) 2001, 2002 Swedish Institute of Computer Science.
# All rights reserved. # All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
# #
# Redistribution and use in source and binary forms, with or without # 1. Redistributions of source code must retain the above copyright notice,
# modification, are permitted provided that the following conditions # this list of conditions and the following disclaimer.
# are met: # 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
# #
# 1. Redistributions of source code must retain the above copyright # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# notice, this list of conditions and the following disclaimer. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# 2. Redistributions in binary form must reproduce the above copyright # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# notice, this list of conditions and the following disclaimer in the # SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# documentation and/or other materials provided with the distribution. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# 3. Neither the name of the Institute nor the names of its contributors # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# may be used to endorse or promote products derived from this software # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# without specific prior written permission. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND # OF SUCH DAMAGE.
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
# #
# This file is part of the lwIP TCP/IP stack. # This file is part of the lwIP TCP/IP stack.
# #
# Author: Adam Dunkels <adam@sics.se> # Author: Adam Dunkels <adam@sics.se>
# #
# $Id: Makefile,v 1.1 2002/10/19 12:59:33 likewise Exp $
CCDEP=gcc CCDEP=gcc
CC=gcc CC=gcc
CFLAGS=-g -Wall -DIPv4 -Os -fpack-struct CFLAGS=-g -Wall -DIPv4 -Os -fpack-struct

View File

@ -1,36 +1,33 @@
# Copyright (c) 2001, Swedish Institute of Computer Science. #
# Copyright (c) 2001, 2002 Swedish Institute of Computer Science.
# All rights reserved. # All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
# #
# Redistribution and use in source and binary forms, with or without # 1. Redistributions of source code must retain the above copyright notice,
# modification, are permitted provided that the following conditions # this list of conditions and the following disclaimer.
# are met: # 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
# #
# 1. Redistributions of source code must retain the above copyright # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# notice, this list of conditions and the following disclaimer. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# 2. Redistributions in binary form must reproduce the above copyright # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# notice, this list of conditions and the following disclaimer in the # SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# documentation and/or other materials provided with the distribution. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# 3. Neither the name of the Institute nor the names of its contributors # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# may be used to endorse or promote products derived from this software # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# without specific prior written permission. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND # OF SUCH DAMAGE.
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
# #
# This file is part of the lwIP TCP/IP stack. # This file is part of the lwIP TCP/IP stack.
# #
# Author: Adam Dunkels <adam@sics.se> # Author: Adam Dunkels <adam@sics.se>
# #
# $Id: Makefile,v 1.1 2002/10/19 12:59:37 likewise Exp $
CCDEP=gcc CCDEP=gcc
CC=gcc CC=gcc