Commit 7b74a63a authored by John Selbie's avatar John Selbie

VS Code in gitignore. Fix sample authprovider

parent 72053737
nbproject/ nbproject/
.vscode/
*.o *.o
*.gch *.gch
......
...@@ -131,21 +131,14 @@ as appropriate: ...@@ -131,21 +131,14 @@ as appropriate:
class CShortTermAuth : class CShortTermAuth : public IStunAuth
public CBasicRefCount,
public CObjectFactory<CShortTermAuth>,
public IStunAuth
{ {
public: public:
virtual HRESULT DoAuthCheck(AuthAttributes* pAuthAttributes, AuthResponse* pResponse); virtual HRESULT DoAuthCheck(AuthAttributes* pAuthAttributes, AuthResponse* pResponse);
ADDREF_AND_RELEASE_IMPL();
}; };
class CLongTermAuth : class CLongTermAuth : public IStunAuth
public CBasicRefCount,
public CObjectFactory<CLongTermAuth>,
public IStunAuth
{ {
private: private:
void HmacToString(uint8_t* hmacvalue, char* pszResult); void HmacToString(uint8_t* hmacvalue, char* pszResult);
...@@ -155,7 +148,6 @@ private: ...@@ -155,7 +148,6 @@ private:
public: public:
virtual HRESULT DoAuthCheck(AuthAttributes* pAuthAttributes, AuthResponse* pResponse); virtual HRESULT DoAuthCheck(AuthAttributes* pAuthAttributes, AuthResponse* pResponse);
ADDREF_AND_RELEASE_IMPL();
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment