Browse Source

Renamed include.hpp to common.hpp

Paul-Louis Ageneau 4 years ago
parent
commit
dbee42b099
48 changed files with 49 additions and 49 deletions
  1. 1 1
      CMakeLists.txt
  2. 1 1
      include/rtc/candidate.hpp
  3. 1 1
      include/rtc/channel.hpp
  4. 2 2
      include/rtc/common.hpp
  5. 1 1
      include/rtc/configuration.hpp
  6. 1 1
      include/rtc/datachannel.hpp
  7. 1 1
      include/rtc/description.hpp
  8. 1 1
      include/rtc/init.hpp
  9. 1 1
      include/rtc/log.hpp
  10. 1 1
      include/rtc/mediahandler.hpp
  11. 1 1
      include/rtc/mediahandlerelement.hpp
  12. 1 1
      include/rtc/message.hpp
  13. 1 1
      include/rtc/nalunit.hpp
  14. 1 1
      include/rtc/peerconnection.hpp
  15. 1 1
      include/rtc/queue.hpp
  16. 1 1
      include/rtc/reliability.hpp
  17. 1 1
      include/rtc/rtc.hpp
  18. 1 1
      include/rtc/rtcpreceivingsession.hpp
  19. 1 1
      include/rtc/track.hpp
  20. 1 1
      include/rtc/websocket.hpp
  21. 1 1
      src/capi.cpp
  22. 1 1
      src/datachannel.cpp
  23. 1 1
      src/globals.hpp
  24. 1 1
      src/impl/base64.hpp
  25. 1 1
      src/impl/certificate.hpp
  26. 1 1
      src/impl/channel.hpp
  27. 1 1
      src/impl/datachannel.cpp
  28. 1 1
      src/impl/datachannel.hpp
  29. 1 1
      src/impl/dtlssrtptransport.hpp
  30. 1 1
      src/impl/dtlstransport.hpp
  31. 1 1
      src/impl/icetransport.hpp
  32. 1 1
      src/impl/logcounter.hpp
  33. 1 1
      src/impl/peerconnection.cpp
  34. 1 1
      src/impl/peerconnection.hpp
  35. 1 1
      src/impl/processor.hpp
  36. 1 1
      src/impl/sctptransport.hpp
  37. 1 1
      src/impl/tcptransport.hpp
  38. 1 1
      src/impl/threadpool.hpp
  39. 1 1
      src/impl/tls.hpp
  40. 1 1
      src/impl/tlstransport.hpp
  41. 1 1
      src/impl/track.hpp
  42. 1 1
      src/impl/transport.hpp
  43. 1 1
      src/impl/verifiedtlstransport.cpp
  44. 1 1
      src/impl/websocket.cpp
  45. 1 1
      src/impl/websocket.hpp
  46. 1 1
      src/impl/wstransport.hpp
  47. 1 1
      src/peerconnection.cpp
  48. 1 1
      src/websocket.cpp

+ 1 - 1
CMakeLists.txt

@@ -81,7 +81,7 @@ set(LIBDATACHANNEL_HEADERS
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/description.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/description.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/mediahandler.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/mediahandler.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/rtcpreceivingsession.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/rtcpreceivingsession.hpp
-	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/include.hpp
+	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/common.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/init.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/init.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/log.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/log.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/message.hpp
 	${CMAKE_CURRENT_SOURCE_DIR}/include/rtc/message.hpp

+ 1 - 1
include/rtc/candidate.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_CANDIDATE_H
 #ifndef RTC_CANDIDATE_H
 #define RTC_CANDIDATE_H
 #define RTC_CANDIDATE_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include <string>
 #include <string>
 
 

+ 1 - 1
include/rtc/channel.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_CHANNEL_H
 #ifndef RTC_CHANNEL_H
 #define RTC_CHANNEL_H
 #define RTC_CHANNEL_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 
 
 #include <atomic>
 #include <atomic>

+ 2 - 2
include/rtc/include.hpp → include/rtc/common.hpp

@@ -16,8 +16,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
  */
 
 
-#ifndef RTC_INCLUDE_H
-#define RTC_INCLUDE_H
+#ifndef RTC_COMMON_H
+#define RTC_COMMON_H
 
 
 #ifndef RTC_ENABLE_MEDIA
 #ifndef RTC_ENABLE_MEDIA
 #define RTC_ENABLE_MEDIA 1
 #define RTC_ENABLE_MEDIA 1

+ 1 - 1
include/rtc/configuration.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_ICE_CONFIGURATION_H
 #ifndef RTC_ICE_CONFIGURATION_H
 #define RTC_ICE_CONFIGURATION_H
 #define RTC_ICE_CONFIGURATION_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 
 
 #include <vector>
 #include <vector>

+ 1 - 1
include/rtc/datachannel.hpp

@@ -20,7 +20,7 @@
 #define RTC_DATA_CHANNEL_H
 #define RTC_DATA_CHANNEL_H
 
 
 #include "channel.hpp"
 #include "channel.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "reliability.hpp"
 #include "reliability.hpp"

+ 1 - 1
include/rtc/description.hpp

@@ -21,7 +21,7 @@
 #define RTC_DESCRIPTION_H
 #define RTC_DESCRIPTION_H
 
 
 #include "candidate.hpp"
 #include "candidate.hpp"
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include <iostream>
 #include <iostream>
 #include <map>
 #include <map>

+ 1 - 1
include/rtc/init.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_INIT_H
 #ifndef RTC_INIT_H
 #define RTC_INIT_H
 #define RTC_INIT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include <mutex>
 #include <mutex>
 
 

+ 1 - 1
include/rtc/log.hpp

@@ -35,7 +35,7 @@
 #pragma warning(pop)
 #pragma warning(pop)
 #endif
 #endif
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 namespace rtc {
 namespace rtc {
 
 

+ 1 - 1
include/rtc/mediahandler.hpp

@@ -20,7 +20,7 @@
 #ifndef RTC_MEDIA_HANDLER_H
 #ifndef RTC_MEDIA_HANDLER_H
 #define RTC_MEDIA_HANDLER_H
 #define RTC_MEDIA_HANDLER_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 
 
 namespace rtc {
 namespace rtc {

+ 1 - 1
include/rtc/mediahandlerelement.hpp

@@ -20,7 +20,7 @@
 
 
 #if RTC_ENABLE_MEDIA
 #if RTC_ENABLE_MEDIA
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "rtp.hpp"
 #include "rtp.hpp"
 
 

+ 1 - 1
include/rtc/message.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_MESSAGE_H
 #ifndef RTC_MESSAGE_H
 #define RTC_MESSAGE_H
 #define RTC_MESSAGE_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "reliability.hpp"
 #include "reliability.hpp"
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
include/rtc/nalunit.hpp

@@ -21,7 +21,7 @@
 
 
 #if RTC_ENABLE_MEDIA
 #if RTC_ENABLE_MEDIA
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 namespace rtc {
 namespace rtc {
 
 

+ 1 - 1
include/rtc/peerconnection.hpp

@@ -23,7 +23,7 @@
 #include "configuration.hpp"
 #include "configuration.hpp"
 #include "datachannel.hpp"
 #include "datachannel.hpp"
 #include "description.hpp"
 #include "description.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp"
 #include "init.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "reliability.hpp"
 #include "reliability.hpp"

+ 1 - 1
include/rtc/queue.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_QUEUE_H
 #ifndef RTC_QUEUE_H
 #define RTC_QUEUE_H
 #define RTC_QUEUE_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include <atomic>
 #include <atomic>
 #include <chrono>
 #include <chrono>

+ 1 - 1
include/rtc/reliability.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_RELIABILITY_H
 #ifndef RTC_RELIABILITY_H
 #define RTC_RELIABILITY_H
 #define RTC_RELIABILITY_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include <chrono>
 #include <chrono>
 #include <variant>
 #include <variant>

+ 1 - 1
include/rtc/rtc.hpp

@@ -17,7 +17,7 @@
  */
  */
 
 
 // C++ API
 // C++ API
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp" // for rtc::Cleanup()
 #include "init.hpp" // for rtc::Cleanup()
 #include "log.hpp"
 #include "log.hpp"
 //
 //

+ 1 - 1
include/rtc/rtcpreceivingsession.hpp

@@ -22,7 +22,7 @@
 
 
 #if RTC_ENABLE_MEDIA
 #if RTC_ENABLE_MEDIA
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "mediahandler.hpp"
 #include "mediahandler.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "rtp.hpp"
 #include "rtp.hpp"

+ 1 - 1
include/rtc/track.hpp

@@ -21,7 +21,7 @@
 
 
 #include "channel.hpp"
 #include "channel.hpp"
 #include "description.hpp"
 #include "description.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "mediahandler.hpp"
 #include "mediahandler.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "queue.hpp"
 #include "queue.hpp"

+ 1 - 1
include/rtc/websocket.hpp

@@ -22,7 +22,7 @@
 #if RTC_ENABLE_WEBSOCKET
 #if RTC_ENABLE_WEBSOCKET
 
 
 #include "channel.hpp"
 #include "channel.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp"
 #include "init.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "queue.hpp"
 #include "queue.hpp"

+ 1 - 1
src/capi.cpp

@@ -16,7 +16,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
  */
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include "rtc.h"
 #include "rtc.h"
 
 

+ 1 - 1
src/datachannel.cpp

@@ -18,7 +18,7 @@
 
 
 #include "datachannel.hpp"
 #include "datachannel.hpp"
 #include "globals.hpp"
 #include "globals.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
 
 
 #include "impl/datachannel.hpp"
 #include "impl/datachannel.hpp"

+ 1 - 1
src/globals.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_GLOBALS_H
 #ifndef RTC_GLOBALS_H
 #define RTC_GLOBALS_H
 #define RTC_GLOBALS_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 namespace rtc {
 namespace rtc {
 
 

+ 1 - 1
src/impl/base64.hpp

@@ -21,7 +21,7 @@
 
 
 #if RTC_ENABLE_WEBSOCKET
 #if RTC_ENABLE_WEBSOCKET
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 namespace rtc::impl {
 namespace rtc::impl {
 
 

+ 1 - 1
src/impl/certificate.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_CERTIFICATE_H
 #ifndef RTC_IMPL_CERTIFICATE_H
 #define RTC_IMPL_CERTIFICATE_H
 #define RTC_IMPL_CERTIFICATE_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "tls.hpp"
 #include "tls.hpp"
 
 
 #include <future>
 #include <future>

+ 1 - 1
src/impl/channel.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_CHANNEL_H
 #ifndef RTC_IMPL_CHANNEL_H
 #define RTC_IMPL_CHANNEL_H
 #define RTC_IMPL_CHANNEL_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 
 
 #include <atomic>
 #include <atomic>

+ 1 - 1
src/impl/datachannel.cpp

@@ -18,7 +18,7 @@
 
 
 #include "datachannel.hpp"
 #include "datachannel.hpp"
 #include "globals.hpp"
 #include "globals.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "logcounter.hpp"
 #include "logcounter.hpp"
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
 #include "sctptransport.hpp"
 #include "sctptransport.hpp"

+ 1 - 1
src/impl/datachannel.hpp

@@ -20,7 +20,7 @@
 #define RTC_IMPL_DATA_CHANNEL_H
 #define RTC_IMPL_DATA_CHANNEL_H
 
 
 #include "channel.hpp"
 #include "channel.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
 #include "queue.hpp"
 #include "queue.hpp"

+ 1 - 1
src/impl/dtlssrtptransport.hpp

@@ -20,7 +20,7 @@
 #define RTC_IMPL_DTLS_SRTP_TRANSPORT_H
 #define RTC_IMPL_DTLS_SRTP_TRANSPORT_H
 
 
 #include "dtlstransport.hpp"
 #include "dtlstransport.hpp"
-#include "include.hpp"
+#include "common.hpp"
 
 
 #if RTC_ENABLE_MEDIA
 #if RTC_ENABLE_MEDIA
 
 

+ 1 - 1
src/impl/dtlstransport.hpp

@@ -20,7 +20,7 @@
 #define RTC_IMPL_DTLS_TRANSPORT_H
 #define RTC_IMPL_DTLS_TRANSPORT_H
 
 
 #include "certificate.hpp"
 #include "certificate.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "tls.hpp"
 #include "tls.hpp"
 #include "transport.hpp"
 #include "transport.hpp"

+ 1 - 1
src/impl/icetransport.hpp

@@ -22,7 +22,7 @@
 #include "candidate.hpp"
 #include "candidate.hpp"
 #include "configuration.hpp"
 #include "configuration.hpp"
 #include "description.hpp"
 #include "description.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
 #include "transport.hpp"
 #include "transport.hpp"
 
 

+ 1 - 1
src/impl/logcounter.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_SERVER_LOGCOUNTER_HPP
 #ifndef RTC_SERVER_LOGCOUNTER_HPP
 #define RTC_SERVER_LOGCOUNTER_HPP
 #define RTC_SERVER_LOGCOUNTER_HPP
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "threadpool.hpp"
 #include "threadpool.hpp"
 
 
 #include <atomic>
 #include <atomic>

+ 1 - 1
src/impl/peerconnection.cpp

@@ -22,7 +22,7 @@
 #include "dtlstransport.hpp"
 #include "dtlstransport.hpp"
 #include "globals.hpp"
 #include "globals.hpp"
 #include "icetransport.hpp"
 #include "icetransport.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "logcounter.hpp"
 #include "logcounter.hpp"
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
 #include "processor.hpp"
 #include "processor.hpp"

+ 1 - 1
src/impl/peerconnection.hpp

@@ -22,7 +22,7 @@
 #include "datachannel.hpp"
 #include "datachannel.hpp"
 #include "dtlstransport.hpp"
 #include "dtlstransport.hpp"
 #include "icetransport.hpp"
 #include "icetransport.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "sctptransport.hpp"
 #include "sctptransport.hpp"
 #include "track.hpp"
 #include "track.hpp"
 
 

+ 1 - 1
src/impl/processor.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_PROCESSOR_H
 #ifndef RTC_IMPL_PROCESSOR_H
 #define RTC_IMPL_PROCESSOR_H
 #define RTC_IMPL_PROCESSOR_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp"
 #include "init.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "threadpool.hpp"
 #include "threadpool.hpp"

+ 1 - 1
src/impl/sctptransport.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_SCTP_TRANSPORT_H
 #ifndef RTC_IMPL_SCTP_TRANSPORT_H
 #define RTC_IMPL_SCTP_TRANSPORT_H
 #define RTC_IMPL_SCTP_TRANSPORT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "processor.hpp"
 #include "processor.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "transport.hpp"
 #include "transport.hpp"

+ 1 - 1
src/impl/tcptransport.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_TCP_TRANSPORT_H
 #ifndef RTC_IMPL_TCP_TRANSPORT_H
 #define RTC_IMPL_TCP_TRANSPORT_H
 #define RTC_IMPL_TCP_TRANSPORT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "transport.hpp"
 #include "transport.hpp"
 
 

+ 1 - 1
src/impl/threadpool.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_THREADPOOL_H
 #ifndef RTC_IMPL_THREADPOOL_H
 #define RTC_IMPL_THREADPOOL_H
 #define RTC_IMPL_THREADPOOL_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp"
 #include "init.hpp"
 
 
 #include <chrono>
 #include <chrono>

+ 1 - 1
src/impl/tls.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_TLS_H
 #ifndef RTC_TLS_H
 #define RTC_TLS_H
 #define RTC_TLS_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 
 
 #if USE_GNUTLS
 #if USE_GNUTLS
 
 

+ 1 - 1
src/impl/tlstransport.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_TLS_TRANSPORT_H
 #ifndef RTC_IMPL_TLS_TRANSPORT_H
 #define RTC_IMPL_TLS_TRANSPORT_H
 #define RTC_IMPL_TLS_TRANSPORT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "queue.hpp"
 #include "queue.hpp"
 #include "tls.hpp"
 #include "tls.hpp"
 #include "transport.hpp"
 #include "transport.hpp"

+ 1 - 1
src/impl/track.hpp

@@ -21,7 +21,7 @@
 
 
 #include "channel.hpp"
 #include "channel.hpp"
 #include "description.hpp"
 #include "description.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "mediahandler.hpp"
 #include "mediahandler.hpp"
 
 
 #if RTC_ENABLE_MEDIA
 #if RTC_ENABLE_MEDIA

+ 1 - 1
src/impl/transport.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_TRANSPORT_H
 #ifndef RTC_IMPL_TRANSPORT_H
 #define RTC_IMPL_TRANSPORT_H
 #define RTC_IMPL_TRANSPORT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "message.hpp"
 #include "message.hpp"
 
 
 #include <atomic>
 #include <atomic>

+ 1 - 1
src/impl/verifiedtlstransport.cpp

@@ -17,7 +17,7 @@
  */
  */
 
 
 #include "verifiedtlstransport.hpp"
 #include "verifiedtlstransport.hpp"
-#include "include.hpp"
+#include "common.hpp"
 
 
 #if RTC_ENABLE_WEBSOCKET
 #if RTC_ENABLE_WEBSOCKET
 
 

+ 1 - 1
src/impl/websocket.cpp

@@ -20,7 +20,7 @@
 
 
 #include "websocket.hpp"
 #include "websocket.hpp"
 #include "globals.hpp"
 #include "globals.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "threadpool.hpp"
 #include "threadpool.hpp"
 
 
 #include "tcptransport.hpp"
 #include "tcptransport.hpp"

+ 1 - 1
src/impl/websocket.hpp

@@ -22,7 +22,7 @@
 #if RTC_ENABLE_WEBSOCKET
 #if RTC_ENABLE_WEBSOCKET
 
 
 #include "channel.hpp"
 #include "channel.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "init.hpp"
 #include "init.hpp"
 #include "message.hpp"
 #include "message.hpp"
 #include "queue.hpp"
 #include "queue.hpp"

+ 1 - 1
src/impl/wstransport.hpp

@@ -19,7 +19,7 @@
 #ifndef RTC_IMPL_WS_TRANSPORT_H
 #ifndef RTC_IMPL_WS_TRANSPORT_H
 #define RTC_IMPL_WS_TRANSPORT_H
 #define RTC_IMPL_WS_TRANSPORT_H
 
 
-#include "include.hpp"
+#include "common.hpp"
 #include "transport.hpp"
 #include "transport.hpp"
 
 
 #if RTC_ENABLE_WEBSOCKET
 #if RTC_ENABLE_WEBSOCKET

+ 1 - 1
src/peerconnection.cpp

@@ -18,7 +18,7 @@
  */
  */
 
 
 #include "peerconnection.hpp"
 #include "peerconnection.hpp"
-#include "include.hpp"
+#include "common.hpp"
 #include "rtp.hpp"
 #include "rtp.hpp"
 
 
 #include "impl/certificate.hpp"
 #include "impl/certificate.hpp"

+ 1 - 1
src/websocket.cpp

@@ -20,7 +20,7 @@
 
 
 #include "websocket.hpp"
 #include "websocket.hpp"
 #include "globals.hpp"
 #include "globals.hpp"
-#include "include.hpp"
+#include "common.hpp"
 
 
 #include "impl/websocket.hpp"
 #include "impl/websocket.hpp"