summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-05-09 09:49:37 +0200
committerLinus Nordberg <linus@nordberg.se>2013-05-09 09:49:37 +0200
commitf0df8b47b0c7639ab3842c2b92c80f70b8ed66d3 (patch)
tree0386b9dacfd26ba6a96d891cb0647eebf5a3cf44
parent4f9a7e63c1d14837ec880b9a63cc6a92a822e7d5 (diff)
Update copyright years.
-rw-r--r--lib/LICENSE2
-rw-r--r--lib/conf.c4
-rw-r--r--lib/conn.c4
-rw-r--r--lib/conn.h4
-rw-r--r--lib/err.c4
-rw-r--r--lib/event.c4
-rw-r--r--lib/event.h4
-rw-r--r--lib/include/radsec/radsec-impl.h3
-rw-r--r--lib/include/radsec/radsec.h3
-rw-r--r--lib/include/radsec/request-impl.h3
-rw-r--r--lib/include/radsec/request.h3
-rw-r--r--lib/peer.c4
-rw-r--r--lib/radsec.c4
-rw-r--r--lib/request.c4
-rw-r--r--lib/send.c4
-rw-r--r--lib/tcp.c4
-rw-r--r--lib/tls.h4
-rw-r--r--lib/util.c4
18 files changed, 35 insertions, 31 deletions
diff --git a/lib/LICENSE b/lib/LICENSE
index 43a0ec8..be32a9a 100644
--- a/lib/LICENSE
+++ b/lib/LICENSE
@@ -1,6 +1,6 @@
* Copyright (c) 2007-2010, UNINETT AS
* Copyright (c) 2011, JANET(UK)
-* Copyright (c) 2010-2011, NORDUnet A/S
+* Copyright (c) 2010-2013, NORDUnet A/S
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/conf.c b/lib/conf.c
index 8ad0a45..68da0a5 100644
--- a/lib/conf.c
+++ b/lib/conf.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/conn.c b/lib/conn.c
index 7522782..f89ac70 100644
--- a/lib/conn.c
+++ b/lib/conn.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/conn.h b/lib/conn.h
index c538a8c..dfeaf74 100644
--- a/lib/conn.h
+++ b/lib/conn.h
@@ -1,5 +1,5 @@
-/* Copyright 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2011,2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
int conn_close (struct rs_connection **connp);
int conn_user_dispatch_p (const struct rs_connection *conn);
diff --git a/lib/err.c b/lib/err.c
index 854a4a9..0c7d5a8 100644
--- a/lib/err.c
+++ b/lib/err.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/event.c b/lib/event.c
index e51616a..802c0b9 100644
--- a/lib/event.c
+++ b/lib/event.c
@@ -1,5 +1,5 @@
-/* Copyright 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2011-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/event.h b/lib/event.h
index 9c239df..bd9ec77 100644
--- a/lib/event.h
+++ b/lib/event.h
@@ -1,5 +1,5 @@
-/* Copyright 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2011-2012 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
void event_on_disconnect (struct rs_connection *conn);
int event_on_connect (struct rs_connection *conn, struct rs_packet *pkt);
diff --git a/lib/include/radsec/radsec-impl.h b/lib/include/radsec/radsec-impl.h
index 6c02dcf..e472703 100644
--- a/lib/include/radsec/radsec-impl.h
+++ b/lib/include/radsec/radsec-impl.h
@@ -1,7 +1,8 @@
/** @file libradsec-impl.h
@brief Libraray internal header file for libradsec. */
-/* See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#ifndef _RADSEC_RADSEC_IMPL_H_
#define _RADSEC_RADSEC_IMPL_H_ 1
diff --git a/lib/include/radsec/radsec.h b/lib/include/radsec/radsec.h
index 230f671..d6150bf 100644
--- a/lib/include/radsec/radsec.h
+++ b/lib/include/radsec/radsec.h
@@ -1,7 +1,8 @@
/** \file radsec.h
\brief Public interface for libradsec. */
-/* See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#ifndef _RADSEC_RADSEC_H_
#define _RADSEC_RADSEC_H_ 1
diff --git a/lib/include/radsec/request-impl.h b/lib/include/radsec/request-impl.h
index bb61dd6..97335e5 100644
--- a/lib/include/radsec/request-impl.h
+++ b/lib/include/radsec/request-impl.h
@@ -1,4 +1,5 @@
-/* See LICENSE for licensing information. */
+/* Copyright 2010-2011 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#ifndef _RADSEC_REQUEST_IMPL_H_
#define _RADSEC_REQUEST_IMPL_H_ 1
diff --git a/lib/include/radsec/request.h b/lib/include/radsec/request.h
index 7e58008..d4c72b3 100644
--- a/lib/include/radsec/request.h
+++ b/lib/include/radsec/request.h
@@ -1,7 +1,8 @@
/** \file request.h
\brief Public interface for libradsec request's. */
-/* See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#ifndef _RADSEC_REQUEST_H_
#define _RADSEC_REQUEST_H_ 1
diff --git a/lib/peer.c b/lib/peer.c
index 0ac4114..decc64b 100644
--- a/lib/peer.c
+++ b/lib/peer.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2012 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/radsec.c b/lib/radsec.c
index db406ae..efd2dc3 100644
--- a/lib/radsec.c
+++ b/lib/radsec.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/request.c b/lib/request.c
index 5649ee1..3a8b6dd 100644
--- a/lib/request.c
+++ b/lib/request.c
@@ -1,5 +1,5 @@
-/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2011 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/send.c b/lib/send.c
index e58b42c..3161bbe 100644
--- a/lib/send.c
+++ b/lib/send.c
@@ -1,5 +1,5 @@
-/* Copyright 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2011,2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/tcp.c b/lib/tcp.c
index e2e9feb..8ea6a5e 100644
--- a/lib/tcp.c
+++ b/lib/tcp.c
@@ -1,5 +1,5 @@
-/* Copyright 2011 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2011-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined HAVE_CONFIG_H
#include <config.h>
diff --git a/lib/tls.h b/lib/tls.h
index 74a63b3..4707b93 100644
--- a/lib/tls.h
+++ b/lib/tls.h
@@ -1,5 +1,5 @@
-/* Copyright 2010 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2010-2012 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#if defined (__cplusplus)
extern "C" {
diff --git a/lib/util.c b/lib/util.c
index e50d473..70d815c 100644
--- a/lib/util.c
+++ b/lib/util.c
@@ -1,5 +1,5 @@
-/* Copyright 2012,2013 NORDUnet A/S. All rights reserved.
- See LICENSE for licensing information. */
+/* Copyright 2012-2013 NORDUnet A/S. All rights reserved.
+ See LICENSE for licensing information. */
#include <stdlib.h>
#include <string.h>