mirror of
https://github.com/Misterblue/os-webrtc-janus.git
synced 2026-08-14 00:47:59 +00:00
Remove duplicate WebRtcVoice/WebRtcJanusService.cs
Rename Janus dll from WebRtcJanus to WebRtcJanusService
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
// Copyright 2024 Robert Adams (misterblue@misterblue.com)
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
using OpenSim.Framework;
|
||||
using OpenSim.Services.Interfaces;
|
||||
using OpenSim.Services.Base;
|
||||
|
||||
using OpenMetaverse.StructuredData;
|
||||
using OpenMetaverse;
|
||||
|
||||
using Nini.Config;
|
||||
using log4net;
|
||||
|
||||
namespace WebRtcVoice
|
||||
{
|
||||
public class WebRtcJanusService : ServiceBase, IWebRtcVoiceService
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
private static readonly string LogHeader = "[WEBRTC JANUS SERVICE]";
|
||||
|
||||
public WebRtcJanusService(IConfigSource pConfig) : base(pConfig)
|
||||
{
|
||||
m_log.DebugFormat("{0} WebRtcJanusService constructor", LogHeader);
|
||||
}
|
||||
|
||||
public OSDMap ProvisionVoiceAccountRequest(OSDMap pRequest, UUID pUserID, IScene pScene)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public OSDMap VoiceSignalingRequest(OSDMap pRequest, UUID pUserID, IScene pScene)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
<Project
|
||||
name="WebRtcJanus"
|
||||
name="WebRtcJanusService"
|
||||
path="addon-modules/os-webrtc-janus/Janus"
|
||||
type="Library">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user