diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-03-20 02:03:29 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-03-20 02:03:29 +0000 |
commit | c9d397d59ff5ecd826c810880a5ebb6e839af8a1 (patch) | |
tree | e161efe4d29bc9eb798a0017be62efe521495fd2 /ext/sockets/multicast.c | |
parent | 8deb11c0c33cbecf7807ac996ed02cebea1ee068 (diff) | |
download | php-git-c9d397d59ff5ecd826c810880a5ebb6e839af8a1.tar.gz |
- Adding copyright headers to the new files, gotta do something about the
windows line endings too, but I'm separating the commits.
Diffstat (limited to 'ext/sockets/multicast.c')
-rw-r--r-- | ext/sockets/multicast.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ext/sockets/multicast.c b/ext/sockets/multicast.c index a22419b4d5..9c54d3f6f1 100644 --- a/ext/sockets/multicast.c +++ b/ext/sockets/multicast.c @@ -1,3 +1,23 @@ +/*
+ +----------------------------------------------------------------------+
+ | PHP Version 5 |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1997-2011 The PHP Group |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.01 of the PHP license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.php.net/license/3_01.txt |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@php.net so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Authors: Gustavo Lopes <cataphract@php.net> |
+ +----------------------------------------------------------------------+
+ */
+
+/* $Id$ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
|