⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enum.h

📁 pwlib源码库
💻 H
字号:
/* * pdns.h * * PWLib library for ENUM lookup * * Portable Windows Library * * Copyright (C) 2004 Post Increment * * The contents of this file are subject to the Mozilla Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See * the License for the specific language governing rights and limitations * under the License. * * The Original Code is Portable Windows Library. * * The Initial Developer of the Original Code is Post Increment * * Contributor(s): ______________________________________. * * $Log: enum.h,v $ * Revision 1.4  2005/08/31 23:55:48  csoutheren * Fixed typo * * Revision 1.3  2005/08/31 05:55:03  shorne * Reworked ENUM to craigs' exacting requirements * * Revision 1.2  2005/08/31 04:07:52  shorne * added ability to set ENUM Servers at runtime * * Revision 1.1  2004/05/31 13:56:37  csoutheren * Added implementation of ENUM resolution of E.164 numbers by DNS * */#if P_DNS#ifndef _PENUM_H#define _PENUM_H#ifdef P_USE_PRAGMA#pragma interface#endif#include <ptclib/pdns.h>namespace PDNS {#ifndef	NAPTR_SRV#define	NAPTR_SRV	35#endif///////////////////////////////////////////////////////////////////////////class NAPTRRecord : public PObject{  PCLASSINFO(NAPTRRecord, PObject);  public:    Comparison Compare(const PObject & obj) const;    void PrintOn(ostream & strm) const;    WORD order;    WORD preference;    PString flags;    PString service;    PString regex;    PString replacement;};PDECLARE_SORTED_LIST(NAPTRRecordList, PDNS::NAPTRRecord)  public:    void PrintOn(ostream & strm) const;    NAPTRRecord * GetFirst(const char * service = NULL);    NAPTRRecord * GetNext(const char * service = NULL);    PDNS::NAPTRRecord * HandleDNSRecord(PDNS_RECORD dnsRecord, PDNS_RECORD results);    void UnlockOrder()    { orderLocked = FALSE; }  protected:    PINDEX     currentPos;    int        lastOrder;    BOOL       orderLocked;};inline BOOL GetRecords(const PString & domain, NAPTRRecordList & recordList){ return Lookup<NAPTR_SRV, NAPTRRecordList, NAPTRRecord>(domain, recordList); }void SetENUMServers(const PStringArray & serverlist);BOOL ENUMLookup(const PString & dn, const PString & service, const PStringArray & domains, PString & URL);BOOL ENUMLookup(const PString & dn, const PString & service, PString & URL);}; // namespace PDNS#endif // _PENUM_H#endif // P_DNS// End Of File ///////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -