diff --git a/channels/chan_h323.c b/channels/chan_h323.c index 529a00b513..f60da0fe8d 100644 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -2676,7 +2676,7 @@ static int reload_config(int is_reload) struct oh323_alias *alias = NULL; struct ast_hostent ahp; struct hostent *hp; char *cat; - char *utype; + const char *utype; int is_user, is_peer, is_alias; char _gatekeeper[100]; int gk_discover, gk_disable, gk_changed; @@ -2721,7 +2721,7 @@ static int reload_config(int is_reload) if (ucfg) { struct ast_variable *gen; int genhas_h323; - char *has_h323; + const char *has_h323; genhas_h323 = ast_true(ast_variable_retrieve(ucfg, "general", "hash323")); gen = ast_variable_browse(ucfg, "general"); diff --git a/channels/h323/caps_h323.cxx b/channels/h323/caps_h323.cxx index 7e9420691f..a420825a39 100644 --- a/channels/h323/caps_h323.cxx +++ b/channels/h323/caps_h323.cxx @@ -1,5 +1,7 @@ #include #include +#include +#include "ast_h323.h" #include "caps_h323.h" #define DEFINE_G711_CAPABILITY(cls, code, capName) \ diff --git a/channels/h323/compat_h323.h b/channels/h323/compat_h323.h index 2ea640c4a9..63da8ac8cc 100644 --- a/channels/h323/compat_h323.h +++ b/channels/h323/compat_h323.h @@ -52,7 +52,7 @@ template class MyPFactory: public PFactory<_Abstract_T, _Key_T> { public: - template class Worker: public PFactory<_Abstract_T, _Key_T>::WorkerBase + template class Worker: public PFactory<_Abstract_T, _Key_T>::WorkerBase { public: Worker(const _Key_T &_key, bool singleton = false) @@ -64,6 +64,8 @@ public: { PFactory<_Abstract_T, _Key_T>::Unregister(key); } + protected: + virtual _Abstract_T *Create(const _Key_T &) const { return new _Concrete_T; } private: PString key;