📄 upnpcommands.h
字号:
/* $Id: upnpcommands.h,v 1.10 2007/01/29 20:27:24 nanard Exp $ *//* Miniupnp project : http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2005-2006 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided within this distribution */#ifndef __UPNPCOMMANDS_H__#define __UPNPCOMMANDS_H__#include "upnpreplyparse.h"#include "declspec.h"#ifdef __cplusplusextern "C" {#endifLIBSPEC unsigned intUPNP_GetTotalBytesSent(const char * controlURL, const char * servicetype);LIBSPEC unsigned intUPNP_GetTotalBytesReceived(const char * controlURL, const char * servicetype);LIBSPEC unsigned intUPNP_GetTotalPacketsSent(const char * controlURL, const char * servicetype);LIBSPEC unsigned intUPNP_GetTotalPacketsReceived(const char * controlURL, const char * servicetype);LIBSPEC voidUPNP_GetStatusInfo(const char * controlURL, const char * servicetype, char * status, unsigned int * uptime);LIBSPEC voidUPNP_GetConnectionTypeInfo(const char * controlURL, const char * servicetype, char * connectionType);/* UPNP_GetExternalIPAddress() call the corresponding UPNP method. * if the third arg is not null the value is copied to it. * at least 16 bytes must be available */LIBSPEC voidUPNP_GetExternalIPAddress(const char * controlURL, const char * servicetype, char * extIpAdd);LIBSPEC voidUPNP_GetLinkLayerMaxBitRates(const char* controlURL, const char* servicetype, unsigned int * bitrateDown, unsigned int * bitrateUp);/* Returns zero if unable to add the port mapping, otherwise non-zero * to indicate success */LIBSPEC intUPNP_AddPortMapping(const char * controlURL, const char * servicetype, const char * extPort, const char * inPort, const char * inClient, const char * desc, const char * proto);LIBSPEC voidUPNP_DeletePortMapping(const char * controlURL, const char * servicetype, const char * extPort, const char * proto);LIBSPEC voidUPNP_GetPortMappingNumberOfEntries(const char* controlURL, const char* servicetype, unsigned int * num);/* UPNP_GetSpecificPortMappingEntry retrieves an existing port mapping * the result is returned in the intClient and intPort strings * please provide 16 and 6 bytes of data */LIBSPEC voidUPNP_GetSpecificPortMappingEntry(const char * controlURL, const char * servicetype, const char * extPort, const char * proto, char * intClient, char * intPort);LIBSPEC intUPNP_GetGenericPortMappingEntry(const char * controlURL, const char * servicetype, const char * index, char * extPort, char * intClient, char * intPort, char * protocol, char * desc, char * enabled, char * rHost, char * duration);#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -