1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #591 from authmillenon/author_oliver

Add Oliver Gesch as author of his files
This commit is contained in:
Christian Mehlis 2014-01-31 08:05:43 -08:00
commit fb81b3cfdb
5 changed files with 67 additions and 15 deletions

View File

@ -1,8 +1,16 @@
/*
* common.c
* Copyright (C) 2013 Freie Universität Berlin.
*
* Created on: 05.10.2011
* Author: Oliver
* 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.
*/
/**
* @{
* @file net_help.c
* @brief Providing implementation for prototypes defined in net_help.h.
* @author Oliver Gesch <oliver.gesch@googlemail.com>
*/
#include <stdio.h>
@ -59,3 +67,7 @@ uint16_t csum(uint16_t sum, uint8_t *buf, uint16_t len)
return sum;
}
/**
* @}
*/

View File

@ -1,8 +1,16 @@
/*
* msg_help.c
* Copyright (C) 2013 Freie Universität Berlin.
*
* Created on: 24.11.2011
* Author: Oliver
* 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.
*/
/**
* @{
* @file msg_help.c
* @brief Providing implementation for prototypes defined in msg_help.h.
* @author Oliver Gesch <oliver.gesch@googlemail.com>
*/
#include <stdio.h>
@ -45,3 +53,7 @@ int net_msg_send_recv(msg_t *m, msg_t *reply, unsigned int pid, uint16_t message
m->type = message;
return msg_send_receive(m, reply, pid);;
}
/**
* @}
*/

View File

@ -1,10 +1,16 @@
/*
* msg_help.h
* Copyright (C) 2013 Freie Universität Berlin.
*
* Created on: 24.11.2011
* Author: Oliver
* 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.
*/
/**
* @{
* @file msg_help.h
* @author Oliver Gesch <oliver.gesch@googlemail.com>
*/
#ifndef MSG_HELP_H_
#define MSG_HELP_H_
@ -35,3 +41,6 @@ int net_msg_send(msg_t *m, unsigned int pid, bool block, uint16_t message);
int net_msg_send_recv(msg_t *m, msg_t *reply, unsigned int pid, uint16_t message);
#endif /* MSG_HELP_H_ */
/**
* @}
*/

View File

@ -1,10 +1,16 @@
/*
* tcp_hc.h
* Copyright (C) 2013 Freie Universität Berlin.
*
* Created on: 01.02.2012
* Author: Oliver
* 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.
*/
/**
* @{
* @file tcp_hc.c
* @author Oliver Gesch <oliver.gesch@googlemail.com>
*/
#ifndef TCP_HC_H_
#define TCP_HC_H_
@ -25,3 +31,6 @@ uint16_t compress_tcp_packet(socket_internal_t *current_socket, uint8_t *current
socket_internal_t *decompress_tcp_packet(ipv6_hdr_t *temp_ipv6_header);
#endif
#endif /* TCP_HC_H_ */
/**
* @}
*/

View File

@ -1,8 +1,15 @@
/*
* tcp_timer.h
* Copyright (C) 2013 Freie Universität Berlin.
*
* Created on: 21.01.2012
* Author: Oliver
* 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.
*/
/**
* @{
* @file tcp_timer.h
* @author Oliver Gesch <oliver.gesch@googlemail.com>
*/
#ifndef TCP_TIMER_H_
@ -29,3 +36,6 @@
void tcp_general_timer(void);
#endif /* TCP_TIMER_H_ */
/**
* @}
*/