Skip to content

Commit

Permalink
Merge pull request #1 from OlegHahm/transport_layer_refactoring_licen…
Browse files Browse the repository at this point in the history
…se_fix

licenses: add missing and fix broken license headers
  • Loading branch information
cgundogan committed Sep 11, 2014
2 parents 5d302df + 11a9189 commit f51f9d9
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 30 deletions.
8 changes: 8 additions & 0 deletions sys/net/include/socket_base/in.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (C) 2014 Freie Universität Berlin.
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
* socket_base/in.h - Constants defined by the internet system, per RFC 790,
* September 1981, and numerous additions, inspired by
Expand Down
12 changes: 5 additions & 7 deletions sys/net/include/tcp.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/**
* tcp.h - Wraps all API types, constants and functions of the tcp implementation.
*
* Copyright (C) 2013 INRIA.
/*
* Copyright (C) 2013, 2014 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
Expand Down
12 changes: 5 additions & 7 deletions sys/net/include/udp.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/**
* udp.h - Wraps all API types, constants and functions of the tcp implementation.
*
* Copyright (C) 2013 INRIA.
/*
* Copyright (C) 2013, 2014 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
Expand Down
16 changes: 8 additions & 8 deletions sys/net/transport_layer/socket_base/socket.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* socket API
*
* Copyright (C) 2013 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
/*
* Copyright (C) 2013, 2014 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
* @ingroup socket_base
* @{
* @file socket.c
Expand Down
8 changes: 8 additions & 0 deletions sys/net/transport_layer/socket_base/socket.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* Copyright (C) 2014 Freie Universität Berlin.
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

#ifndef _SOCKET_BASE_SOCKET
#define _SOCKET_BASE_SOCKET

Expand Down
16 changes: 8 additions & 8 deletions sys/net/transport_layer/udp/udp.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* UDP implementation
*
* Copyright (C) 2013 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
/*
* Copyright (C) 2013, 2014 INRIA.
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/

/**
* @ingroup udp
* @{
* @file udp.c
Expand Down

0 comments on commit f51f9d9

Please sign in to comment.