mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
22 lines
395 B
C++
22 lines
395 B
C++
//
|
|
// Created by xzl on 2019-06-06.
|
|
//
|
|
|
|
#ifndef ZLMEDIAKIT_WEBAPI_H
|
|
#define ZLMEDIAKIT_WEBAPI_H
|
|
|
|
namespace mediakit {
|
|
////////////RTSP服务器配置///////////
|
|
namespace Rtsp {
|
|
extern const char kPort[];
|
|
} //namespace Rtsp
|
|
|
|
////////////RTMP服务器配置///////////
|
|
namespace Rtmp {
|
|
extern const char kPort[];
|
|
} //namespace RTMP
|
|
} // namespace mediakit
|
|
|
|
|
|
#endif //ZLMEDIAKIT_WEBAPI_H
|