addRemoveDebuggingIPAddress(ipAddress[, action])
Last updated February 17, 2004
Version: 1 | Requires: CF6 | Library: UtilityLib
Description:
This function will either add or remove an IP address to the list of debugging ip addresses if you do not have an administrator access. It accepts two parameters, IPaddress to be added or removed and the action i.e either add or remove.
Return Values:
Returns a list of IP addresses.
Example:
<cfoutput>#addRemoveDebuggingIPAddress("127.0.0.2","remove")#</cfoutput>
Parameters:
Name | Description | Required |
---|---|---|
ipAddress | IP Address | Yes |
action | Add or Remove. Defaults to Add. | No |
Full UDF Source:
<!---
This function will either add or remove an IP address to the list of debugging ip addresses if you do not have an administrator access.
@param ipAddress IP Address (Required)
@param action Add or Remove. Defaults to Add. (Optional)
@return Returns a list of IP addresses.
@author Qasim Rasheed (qasim_1976@yahoo.com)
@version 1, February 17, 2004
--->
<cffunction name="addRemoveDebuggingIPAddress" output="false" returnType="string">
<cfargument name="IPaddress" type="string" required="Yes" />
<cfargument name="action" type="string" default="Add" />
<cfscript>
var factory = CreateObject("Java","coldfusion.server.ServiceFactory");
var debuggingService ="";
</cfscript>
<cflock name="factory_debuggingservice" type="exclusive" timeout="5">
<cfset debuggingService = factory.getDebuggingService()>
<cfswitch expression="#arguments.action#">
<cfcase value="Add">
<cfif not listcontainsnocase(debuggingService.iplist.ipList,arguments.IPaddress)>
<cfset debuggingService.iplist.ipList = ListAppend(debuggingService.iplist.ipList,arguments.IPaddress)>
</cfif>
</cfcase>
<cfcase value="Remove">
<cfif listcontainsnocase(debuggingService.iplist.ipList,arguments.IPaddress)>
<cfset debuggingService.iplist.ipList = ListDeleteAt(debuggingService.iplist.ipList,ListFindNoCase(debuggingService.iplist.ipList,arguments.IPaddress))>
</cfif>
</cfcase>
</cfswitch>
<cfreturn debuggingService.iplist.ipList />
</cflock>
</cffunction>
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016