Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

109 lines
3.2 KiB

/************************************************************************
* *
* INTEL CORPORATION PROPRIETARY INFORMATION *
* *
* This software is supplied under the terms of a license *
* agreement or non-disclosure agreement with Intel Corporation *
* and may not be copied or disclosed except in accordance *
* with the terms of that agreement. *
* *
* Copyright (C) 1997 Intel Corp. All Rights Reserved *
* *
* $Archive: S:\sturgeon\src\gki\vcs\gkideng.cpv $
* *
* $Revision: 1.6 $
* $Date: 12 Feb 1997 01:12:12 $
* *
* $Author: CHULME $
* *
* $Log: S:\sturgeon\src\gki\vcs\gkideng.cpv $
//
// Rev 1.6 12 Feb 1997 01:12:12 CHULME
// Redid thread synchronization to use Gatekeeper.Lock
//
// Rev 1.5 17 Jan 1997 09:02:12 CHULME
// Changed reg.h to gkreg.h to avoid name conflict with inc directory
//
// Rev 1.4 10 Jan 1997 16:15:32 CHULME
// Removed MFC dependency
//
// Rev 1.3 20 Dec 1996 16:38:36 CHULME
// Fixed access synchronization with Gatekeeper lock
//
// Rev 1.2 02 Dec 1996 23:49:54 CHULME
// Added premptive synchronization code
//
// Rev 1.1 22 Nov 1996 15:20:08 CHULME
// Added VCS log to the header
*************************************************************************/
// gkidisengage.cpp : Handles the GKI_DisengageRequest API
//
#include "precomp.h"
#include <process.h>
#include <winsock.h>
#include "GKICOM.H"
#include "dspider.h"
#include "dgkilit.h"
#include "DGKIPROT.H"
#include "GATEKPR.H"
#include "gksocket.h"
#include "GKREG.H"
#include "dcall.h"
#include "h225asn.h"
#include "coder.hpp"
#include "dgkiext.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
extern "C" HRESULT DLL_EXPORT
GKI_DisengageRequest(HANDLE hCall)
{
// ABSTRACT: This function is exported. It is called by the client application
// to unregister with the Gatekeeper. The handle supplied by the client
// is actually a pointer to the CRegistration object, which will be
// deleted
// AUTHOR: Colin Hulme
HRESULT hResult;
CCall *pCall;
#ifdef _DEBUG
char szGKDebug[80];
#endif
SPIDER_TRACE(SP_FUNC, "GKI_DisengageRequest(%X)\n", hCall);
SPIDER_TRACE(SP_GKI, "GKI_DisengageRequest(%X)\n", hCall);
// Create a Gatekeeper lock object on the stack
// It's constructor will lock pGK and when we return
// from any path, its destructor will unlock pGK
CGatekeeperLock GKLock(g_pGatekeeper);
if (g_pReg == 0)
return (GKI_NOT_REG);
if (g_pReg->GetState() != CRegistration::GK_REGISTERED)
return (GKI_NOT_REG);
// Validate call pointer
pCall = (CCall *)hCall;
if (IsBadReadPtr(pCall, sizeof(CCall)))
return (GKI_HANDLE_ERROR);
if (pCall != (CCall *)pCall->GetHCall())
return (GKI_HANDLE_ERROR);
// Protect against concurrent PDUs
if (pCall->GetRasMessage() != 0)
return (GKI_BUSY);
// Create DisengageRequest structure - Encode and send PDU
if ((hResult = pCall->DisengageRequest()) != GKI_OK)
return (hResult);
return (GKI_OK);
}