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

📄 documentation

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻
字号:
/** * $Id: DOCUMENTATION,v 1.4.2.1 2003/07/22 17:50:44 meebey Exp $ * $Revision: 1.4.2.1 $ * $Author: meebey $ * $Date: 2003/07/22 17:50:44 $ * * Copyright (c) 2002-2003 Mirco "MEEBEY" Bauer <mail@meebey.net> <http://www.meebey.net> *  * Full LGPL License: <http://www.meebey.net/lgpl.txt> *  * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */API Documention of SmartIRC-------------------------------Contents:- Message Types- Debug LevelsMessage Types:--------------For RegisterActionhandler() and message() you pass a message type.The IRC protocol defines different kinds of messages. I don't cover all of them becausethere are just too many of them.RegisterActionhandler() uses bitwise constats, eg. SMARTIRC_TYPE_QUERY|SMARTIRC_TYPE_NOTICE would matchif the message is SMARTIRC_TYPE_QUERY _or_ SMARTIRC_TYPE_NOTICE.SmartIRC supports currently the following message types:SMARTIRC_TYPE_UNKNOWNSMARTIRC_TYPE_CHANNELSMARTIRC_TYPE_QUERYSMARTIRC_TYPE_CTCPSMARTIRC_TYPE_NOTICESMARTIRC_TYPE_WHOSMARTIRC_TYPE_JOINSMARTIRC_TYPE_INVITESMARTIRC_TYPE_ACTIONSMARTIRC_TYPE_TOPICCHANGESMARTIRC_TYPE_NICKCHANGESMARTIRC_TYPE_KICKSMARTIRC_TYPE_QUITSMARTIRC_TYPE_LOGINSMARTIRC_TYPE_INFOSMARTIRC_TYPE_LISTSMARTIRC_TYPE_NAMESMARTIRC_TYPE_MOTDSMARTIRC_TYPE_MODECHANGESMARTIRC_TYPE_PARTSMARTIRC_TYPE_ERRORSMARTIRC_TYPE_BANLISTSMARTIRC_TYPE_TOPICSMARTIRC_TYPE_NONRELEVANTSMARTIRC_TYPE_WHOISSMARTIRC_TYPE_WHOWASSMARTIRC_TYPE_USERMODESMARTIRC_TYPE_CHANNELMODESMARTIRC_TYPE_CTCP_REQUESTSMARTIRC_TYPE_CTCP_REPLYDebug Levels:------------Here the list of avialable debug levels, used for the setDebug() setting and log() method:SMARTIRC_DEBUG_NONESMARTIRC_DEBUG_NOTICESMARTIRC_DEBUG_CONNECTIONSMARTIRC_DEBUG_SOCKETSMARTIRC_DEBUG_IRCMESSAGESSMARTIRC_DEBUG_MESSAGETYPESSMARTIRC_DEBUG_ACTIONHANDLERSMARTIRC_DEBUG_TIMEHANDLERSMARTIRC_DEBUG_MESSAGEHANDLERSMARTIRC_DEBUG_CHANNELSYNCINGSMARTIRC_DEBUG_MESSAGEPARSERSMARTIRC_DEBUG_ALL

⌨️ 快捷键说明

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