[asterisk-scf-commits] asterisk-scf/integration/sip.git branch "master" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Tue Aug 31 10:44:23 CDT 2010


branch "master" has been updated
       via  b59e9ce8a8f5db2543f9392c1a6be5478ad9952e (commit)
      from  157456db2e264918ca3e55941412c27c713f5546 (commit)

Summary of changes:
 cmake                                    |    2 +-
 src/PJSipManager.cpp                     |    7 +++++++
 src/PJSipManager.h                       |    8 ++++++++
 src/PJSipSessionModule.cpp               |    8 ++++++++
 src/PJSipSessionModule.h                 |    8 ++++++++
 src/SipChannelServiceApp.cpp             |    8 ++++++++
 src/SipChannelServiceDataModel.h         |    8 ++++++++
 src/SipChannelServiceEndpointLocator.cpp |    8 ++++++++
 src/SipChannelServiceEndpointLocator.h   |    8 ++++++++
 src/SipChannelServiceEventPublisher.cpp  |    8 ++++++++
 src/SipChannelServiceEventPublisher.h    |    8 ++++++++
 src/SipEndpoint.cpp                      |    8 ++++++++
 src/SipEndpoint.h                        |    8 ++++++++
 src/SipEndpointFactory.cpp               |    8 ++++++++
 src/SipEndpointFactory.h                 |    8 ++++++++
 15 files changed, 112 insertions(+), 1 deletions(-)


- Log -----------------------------------------------------------------
commit b59e9ce8a8f5db2543f9392c1a6be5478ad9952e
Author: Mark Michelson <mmichelson at digium.com>
Date:   Tue Aug 31 10:45:46 2010 -0500

    Add copyright headers to C++ source and header files in sip repo.

diff --git a/cmake b/cmake
index 1095aeb..98cbf4a 160000
--- a/cmake
+++ b/cmake
@@ -1 +1 @@
-Subproject commit 1095aeb680f1c6c2c411d80657e2c066bf7aa6d8
+Subproject commit 98cbf4a0d71e2af47068d55a7bcbabf8616aff92
diff --git a/src/PJSipManager.cpp b/src/PJSipManager.cpp
index cfc7c8c..6da99c2 100644
--- a/src/PJSipManager.cpp
+++ b/src/PJSipManager.cpp
@@ -1,3 +1,10 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
 #include <iostream>
 
 #include "PJSipManager.h"
diff --git a/src/PJSipManager.h b/src/PJSipManager.h
index e17853d..4394c9d 100644
--- a/src/PJSipManager.h
+++ b/src/PJSipManager.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <vector>
diff --git a/src/PJSipSessionModule.cpp b/src/PJSipSessionModule.cpp
index 28a8c40..4f4d74e 100644
--- a/src/PJSipSessionModule.cpp
+++ b/src/PJSipSessionModule.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include <Core/Endpoint/EndpointIf.h>
 #include <Core/Routing/RoutingIf.h>
 #include <Core/Bridging/BridgeServiceIf.h>
diff --git a/src/PJSipSessionModule.h b/src/PJSipSessionModule.h
index a4b8b8e..fd70169 100644
--- a/src/PJSipSessionModule.h
+++ b/src/PJSipSessionModule.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <pjsip.h>
diff --git a/src/SipChannelServiceApp.cpp b/src/SipChannelServiceApp.cpp
index 3a35290..446abef 100644
--- a/src/SipChannelServiceApp.cpp
+++ b/src/SipChannelServiceApp.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include <Ice/Ice.h>
 #include <IceStorm/IceStorm.h>
 
diff --git a/src/SipChannelServiceDataModel.h b/src/SipChannelServiceDataModel.h
index 4cb5b05..e148ca9 100644
--- a/src/SipChannelServiceDataModel.h
+++ b/src/SipChannelServiceDataModel.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <Ice/Ice.h>
diff --git a/src/SipChannelServiceEndpointLocator.cpp b/src/SipChannelServiceEndpointLocator.cpp
index 9ed8c06..c9255c3 100644
--- a/src/SipChannelServiceEndpointLocator.cpp
+++ b/src/SipChannelServiceEndpointLocator.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include <boost/thread.hpp>
 #include <boost/shared_ptr.hpp>
 
diff --git a/src/SipChannelServiceEndpointLocator.h b/src/SipChannelServiceEndpointLocator.h
index 333b795..9c3b8f7 100644
--- a/src/SipChannelServiceEndpointLocator.h
+++ b/src/SipChannelServiceEndpointLocator.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include "RoutingIf.h"
diff --git a/src/SipChannelServiceEventPublisher.cpp b/src/SipChannelServiceEventPublisher.cpp
index 6b5802d..7616650 100644
--- a/src/SipChannelServiceEventPublisher.cpp
+++ b/src/SipChannelServiceEventPublisher.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include <Ice/Ice.h>
 #include <IceStorm/IceStorm.h>
 
diff --git a/src/SipChannelServiceEventPublisher.h b/src/SipChannelServiceEventPublisher.h
index 46a16e3..be2a651 100644
--- a/src/SipChannelServiceEventPublisher.h
+++ b/src/SipChannelServiceEventPublisher.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <boost/shared_ptr.hpp>
diff --git a/src/SipEndpoint.cpp b/src/SipEndpoint.cpp
index ea1c378..9be082c 100644
--- a/src/SipEndpoint.cpp
+++ b/src/SipEndpoint.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include <Ice/Ice.h>
 #include <IceUtil/UUID.h>
 
diff --git a/src/SipEndpoint.h b/src/SipEndpoint.h
index 8e2c84b..8af8e83 100644
--- a/src/SipEndpoint.h
+++ b/src/SipEndpoint.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <boost/thread.hpp>
diff --git a/src/SipEndpointFactory.cpp b/src/SipEndpointFactory.cpp
index 9b2167f..a76db8f 100644
--- a/src/SipEndpointFactory.cpp
+++ b/src/SipEndpointFactory.cpp
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #include "SipEndpoint.h"
 #include "SipEndpointFactory.h"
 
diff --git a/src/SipEndpointFactory.h b/src/SipEndpointFactory.h
index 6e05645..f44e9e2 100644
--- a/src/SipEndpointFactory.h
+++ b/src/SipEndpointFactory.h
@@ -1,3 +1,11 @@
+/*
+ * Asterisk Scalable Communications Framework
+ *
+ * Copyright (C) 2010 -- Digium, Inc.
+ *
+ * All rights reserved.
+ */
+
 #pragma once
 
 #include <boost/enable_shared_from_this.hpp>

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/sip.git



More information about the asterisk-scf-commits mailing list