blob: 1034a69ade81137e04a0a84f204dff70966cf2ac [file] [log] [blame]
/*
*
* Copyright (c) 2020 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-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.
*/
#pragma once
#include <inet/IPAddress.h>
#include <inet/InetLayer.h>
#include <system/SystemPacketBuffer.h>
#include <transport/SecureSessionMgr.h>
#include <transport/raw/UDP.h>
using DemoSessionManager = chip::SecureSessionMgr<chip::Transport::UDP>;
/**
* Initialize DataModelHandler and start CHIP datamodel server, the server
* assumes the platform's networking has been setup already.
*
* @param [in] sessions The demo's session manager.
*/
void InitServer();