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

VS Code in gitignore. Fix sample authprovider

parent 72053737
nbproject/
.vscode/
*.o
*.gch
......
......@@ -131,21 +131,14 @@ as appropriate:
class CShortTermAuth :
public CBasicRefCount,
public CObjectFactory<CShortTermAuth>,
public IStunAuth
class CShortTermAuth : public IStunAuth
{
public:
virtual HRESULT DoAuthCheck(AuthAttributes* pAuthAttributes, AuthResponse* pResponse);
ADDREF_AND_RELEASE_IMPL();
};
class CLongTermAuth :
public CBasicRefCount,
public CObjectFactory<CLongTermAuth>,
public IStunAuth
class CLongTermAuth : public IStunAuth
{
private:
void HmacToString(uint8_t* hmacvalue, char* pszResult);
......@@ -155,7 +148,6 @@ private:
public:
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