Updated copyright years and fixed LLC typo.

This commit is contained in:
Jack Moffitt
2008-06-19 22:33:13 +00:00
parent 1231d1822c
commit b6027cfd7f
30 changed files with 102 additions and 58 deletions

View File

@@ -1,8 +1,9 @@
# -*- Mode: python -*- # -*- Mode: python -*-
# SCons build specification # SCons build specification
# see http://www.scons.org if you do not have this tool # see http://www.scons.org if you do not have this tool
#
# Copyright (C) 2005 OGG, LCC. All rights reserved. # Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
#
# This software is provided AS-IS with no warranty, either express or # This software is provided AS-IS with no warranty, either express or
# implied. # implied.
# #

View File

@@ -1,7 +1,7 @@
/* auth.c /* auth.c
** libstrophe XMPP client library -- auth functions and handlers ** strophe XMPP client library -- auth functions and handlers
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express or ** This software is provided AS-IS with no warranty, either express or
** implied. ** implied.

View File

@@ -1,7 +1,7 @@
/* common.h /* common.h
** libstrophe XMPP client library -- internal common structures ** strophe XMPP client library -- internal common structures
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express or ** This software is provided AS-IS with no warranty, either express or
** implied. ** implied.

View File

@@ -1,7 +1,7 @@
/* conn.c /* conn.c
** libstrophe XMPP client library -- connection object functions ** strophe XMPP client library -- connection object functions
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* ctx.c /* ctx.c
** libstrophe XMPP client library -- run-time context implementation ** strophe XMPP client library -- run-time context implementation
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* event.c /* event.c
** libstrophe XMPP client library -- event loop and management ** strophe XMPP client library -- event loop and management
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* handler.c /* handler.c
** libstrophe XMPP client library -- event handler management ** strophe XMPP client library -- event handler management
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* hash.c /* hash.c
** libstrophe XMPP client library -- hash table implementation ** strophe XMPP client library -- hash table implementation
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* hash.h /* hash.h
** libstrophe XMPP client library -- hash table interface ** strophe XMPP client library -- hash table interface
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* jid.c /* jid.c
** libstrophe XMPP client library -- helper functions for parsing JIDs ** strophe XMPP client library -- helper functions for parsing JIDs
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,3 +1,17 @@
/* oocontext.cpp
** strophe XMPP client library -- C++ context implementation
**
** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
**
** This software is provided AS-IS with no warranty, either express
** or implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/
#include <stdlib.h> #include <stdlib.h>
#include "strophe.h" #include "strophe.h"

View File

@@ -1,3 +1,17 @@
/* oostanza.cpp
** strophe XMPP client library -- C++ context implementation
**
** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
**
** This software is provided AS-IS with no warranty, either express
** or implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/
#include "strophe.h" #include "strophe.h"
#include "strophepp.h" #include "strophepp.h"

View File

@@ -1,7 +1,8 @@
/* ostypes.h /* ostypes.h
** libstrophe XMPP client library -- type definitions for platforms without stdint.h ** strophe XMPP client library -- type definitions for platforms
** without stdint.h
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* parser.c /* parser.c
** libstrophe XMPP client library -- xml parser handlers and utility functions ** strophe XMPP client library -- xml parser handlers and utility functions
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* sasl.c /* sasl.c
** libstrophe XMPP client library -- SASL authentication helpers ** strophe XMPP client library -- SASL authentication helpers
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* sasl.h /* sasl.h
** libstrophe XMPP client library -- SASL authentication helpers ** strophe XMPP client library -- SASL authentication helpers
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* sock.c /* sock.c
** libstrophe XMPP client library -- socket abstraction implementation ** strophe XMPP client library -- socket abstraction implementation
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* sock.h /* sock.h
** libstrophe XMPP client library -- socket abstraction header ** strophe XMPP client library -- socket abstraction header
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* stanza.c /* stanza.c
** libstrophe XMPP client library -- XMPP stanza object and utilities ** strophe XMPP client library -- XMPP stanza object and utilities
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* thread.c /* thread.c
** libstrophe XMPP client library -- thread abstraction ** strophe XMPP client library -- thread abstraction
** **
** Copyright (C) 2005 OGG, LLC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* thread.h /* thread.h
** XMPP client library -- thread abstraction header ** strophe XMPP client library -- thread abstraction header
** **
** Copyright (C) 2005 OGG, LLC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.h /* tls.h
** libstrophe XMPP client library -- TLS abstraction header ** strophe XMPP client library -- TLS abstraction header
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c /* tls_dummy.c
** libstrophe XMPP client library -- TLS abstraction dummy impl. ** strophe XMPP client library -- TLS abstraction dummy impl.
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c /* tls.c
** libstrophe XMPP client library -- TLS abstraction header ** strophe XMPP client library -- TLS abstraction header
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c /* tls_openssl.c
** libstrophe XMPP client library -- TLS abstraction openssl impl. ** strophe XMPP client library -- TLS abstraction openssl impl.
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c /* tls_schannel.c
** libstrophe XMPP client library -- TLS abstraction schannel impl. ** strophe XMPP client library -- TLS abstraction schannel impl.
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* util.c /* util.c
** libstrophe XMPP client library -- various utility functions ** strophe XMPP client library -- various utility functions
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -1,7 +1,7 @@
/* util.h /* util.h
** libstrophe XMPP client library -- various utility functions ** strophe XMPP client library -- various utility functions
** **
** Copyright (C) 2005 OGG, LCC. All rights reserved. ** Copyright (C) 2005-2008 OGG, LLC. All rights reserved.
** **
** This software is provided AS-IS with no warranty, either express ** This software is provided AS-IS with no warranty, either express
** or implied. ** or implied.

View File

@@ -2,7 +2,14 @@
** strophe XMPP client library C API ** strophe XMPP client library C API
** **
** Copyright (C) 2005-2008 OGG, LLC. ** Copyright (C) 2005-2008 OGG, LLC.
** Please see LICENSE.txt for details. **
** This software is provided AS-IS with no warranty, either express or
** implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/ */
#ifndef __LIBSTROPHE_STROPHE_H__ #ifndef __LIBSTROPHE_STROPHE_H__

View File

@@ -2,7 +2,14 @@
** strophe XMPP client library C++ API ** strophe XMPP client library C++ API
** **
** Copyright (C) 2005-2008 OGG, LLC. ** Copyright (C) 2005-2008 OGG, LLC.
** Please see LICENSE.txt for details. **
** This software is provided AS-IS with no warranty, either express or
** implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/ */
#ifndef __LIBSTROPHE_STROPHEPP_H__ #ifndef __LIBSTROPHE_STROPHEPP_H__