0

IPAddressをTCHAR*として受け取り、逆にされたIPAddressをTCHAR*として返すReversedIPAddressStringという関数があります。リバースIPを正常に取得することはできますが、このTCHAR *ポインター(reversedIP)を他の関数(たとえば、dns.query(TCHAR *))に渡すと、IP値は常にジャンクになります。何が足りないのかしら?

参考までに、ここにコードを貼り付けています...

発信者メソッド:

bool DNSService::DoesPtrRecordExixts(System::String^ ipAddress)
{
    IntPtr ipAddressPtr = Marshal::StringToHGlobalAuto(ipAddress);
    TCHAR* ipAddressString = (TCHAR*)ipAddressPtr.ToPointer();
    bool bRecordExists = 0;

    WSAInitializer initializer;
    Locale locale;

    // Initialize the identity object with the provided credentials
    SecurityAuthIdentity identity(userString,passwordString,domainString);
    // Initialize the context
    DnsContext context;
    // Setup the identity object
    context.acquire(identity);

    DnsRecordQueryT<DNS_PTR_DATA> dns(DNS_TYPE_PTR, serverString);
    try
    {
        bRecordExists = dns.query(ReversedIPAddressString(ipAddressString)) > 0;
    }
    catch(SOL::Exception& ex)
    {
        // Free up the pointers to the resources given to this method
        Marshal::FreeHGlobal(ipAddressPtr);

        if(ex.getErrorCode() == DNS_ERROR_RCODE_NAME_ERROR)
            return bRecordExists;
        else
            throw SOL::Exception(ex.getErrorMessage());
    }

    // Free up the pointers to the resources given to this method
    Marshal::FreeHGlobal(ipAddressPtr);

    return bRecordExists;
}

呼び出されたメソッド:

TCHAR* DNSService::ReversedIPAddressString(TCHAR* ipAddressString)
{
    TCHAR* sep = _T(".");
    TCHAR ipArray[4][4];
    TCHAR reversedIP[30];
    int i = 0;

    TCHAR* token = strtok(ipAddressString, sep);
    while(token != NULL)
    {
        _stprintf(ipArray[i], _T("%s"), token);
        token = strtok((TCHAR*)NULL, sep);
        i++;
    }
    _stprintf(reversedIP, _T("%s.%s.%s.%s.%s"), ipArray[3], ipArray[2], ipArray[1], ipArray[0],_T("IN-ADDR.ARPA"));

    return reversedIP;
}

DNS.Queryメソッド宣言:

int query(__in const TCHAR* hostDomain, __in DWORD options=DNS_QUERY_STANDARD)

あなたからの助けを得ることを願っています。

前もって感謝します!

ラマニ

4

1 に答える 1

0

TCHAR reversedIP[30];関数で割り当てられたローカル配列へのポインタを返してい ますReversedIPAddressString。この関数が終了すると、配列はスコープ外になります-それはもう存在しません。これは未定義の動作です。

たとえば、代わりに文字列オブジェクトを返す必要がありますstd::basic_string<TCHAR>

この質問を参照してください:ローカル変数へのポインタ

于 2012-04-26T14:01:59.837 に答える