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 -*-
# SCons build specification
# 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
# implied.
#

View File

@@ -1,7 +1,7 @@
/* 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
** implied.

View File

@@ -1,7 +1,7 @@
/* 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
** implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** 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 "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 "strophepp.h"

View File

@@ -1,7 +1,8 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.
@@ -993,4 +993,4 @@ int sock_srv_lookup(const char *service, const char *proto, const char *domain,
}
return 1;
}
}

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c
** libstrophe XMPP client library -- TLS abstraction dummy impl.
/* tls_dummy.c
** 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c
** libstrophe XMPP client library -- TLS abstraction openssl impl.
/* tls_openssl.c
** 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* tls.c
** libstrophe XMPP client library -- TLS abstraction schannel impl.
/* tls_schannel.c
** 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -1,7 +1,7 @@
/* 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
** or implied.

View File

@@ -2,7 +2,14 @@
** strophe XMPP client library C API
**
** 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__

View File

@@ -2,7 +2,14 @@
** strophe XMPP client library C++ API
**
** 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__