addRemoveDebuggingIPAddress(ipAddress [, action])
Last updated February 17, 2004
Version: 1 | Requires: ColdFusion MX | 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:
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
Shawn Porter added
DeMoronize
3 hour(s) ago
Chris Carey added
readPropertiesFi...
1 day(s) ago
Randy Johnson added
lastDayofWeek
3 day(s) ago
Frank Marion added
sitemapPing
7 day(s) ago
Top Rated
QuickSort
Rated 5.0, 3 time(s)
indentXml
Rated 5.0, 3 time(s)
queryColumnsToSt...
Rated 5.0, 3 time(s)
generateSsccAsn
Rated 5.0, 3 time(s)