Searched defs:ip (Results 1 - 25 of 37) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4AddressRange.java90 public boolean inRange(String ip) { argument
91 IPv4AddressRange theIP = new IPv4AddressRange(ip);
H A DIPv4Condition.java243 String ip = IPCondition.getRequestIp(env);
244 if(ValidateIPaddress.isIPv6(ip)){
247 if (ip == null) {
249 ip = token.getIPAddress().getHostAddress();
254 if ( (ip != null) && isAllowedByIp(ip) ) {
268 + " requestDnsName, allowed = " + ip + ", "
483 private long stringToIp(String ip) throws PolicyException { argument
484 StringTokenizer st = new StringTokenizer(ip, ".");
487 String args[] = { "ip", i
537 isAllowedByIp(String ip) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/utils/
H A DIPRange.java91 public boolean inRange(String ip) { argument
92 IPRange theIP = new IPRange(ip);
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DNASIPAddressAttribute.java49 private InetAddress ip = null; field in class:NASIPAddressAttribute
59 // fix lack of ip being filled in ip when instantiated from on-the-wire bits
63 ip = InetAddress.getByAddress(addr);
72 * @param ip the IP address of the NAS originating the request.
75 private static final byte[] toOctets(InetAddress ip) { argument
79 byte[] addr = ip.getAddress();
90 * @param ip the IP address of the NAS originating the request.
92 public NASIPAddressAttribute(InetAddress ip) { argument
93 super(NASIPAddressAttribute.toOctets(ip));
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DIPv4Condition.java75 protected Long stringToIp(String ip) throws EntitlementException { argument
76 StringTokenizer st = new StringTokenizer(ip, ".");
79 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
88 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
91 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", s});
H A DIPv6Condition.java73 protected IPv6Address stringToIp(String ip) throws EntitlementException { argument
75 return IPv6Address.fromString(ip);
77 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
H A DIPvXCondition.java109 * @param ip A String representation of an IP value.
113 protected abstract T stringToIp(String ip) throws EntitlementException; argument
275 private boolean isDefinedStartIp(T ip) { argument
276 if (ip == null) {
281 return !initialStartIp.equals(ip);
288 private boolean isDefinedEndIp(T ip) { argument
289 if (ip == null) {
294 return !initialEndIp.equals(ip);
321 String ip = null;
323 ip
403 isAllowedByIp(String ip) argument
[all...]
H A DResourceEnvIPCondition.java856 // treat as single ip address
879 private long stringToIp(String ip) { argument
880 StringTokenizer st = new StringTokenizer(ip, ".");
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DNASIPAddressAttribute.java49 private InetAddress ip = null; field in class:NASIPAddressAttribute
59 // fix lack of ip being filled in ip when instantiated from on-the-wire bits
63 ip = InetAddress.getByAddress(addr);
72 * @param ip the IP address of the NAS originating the request.
75 private static final byte[] toOctets(InetAddress ip) { argument
79 byte[] addr = ip.getAddress();
90 * @param ip the IP address of the NAS originating the request.
92 public NASIPAddressAttribute(InetAddress ip) { argument
93 super(NASIPAddressAttribute.toOctets(ip));
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv4/
H A DIPv4AddressRange.java90 public boolean inRange(String ip) { argument
91 IPv4AddressRange theIP = new IPv4AddressRange(ip);
H A DIPv4Condition.java243 String ip = IPCondition.getRequestIp(env);
244 if(ValidateIPaddress.isIPv6(ip)){
247 if (ip == null) {
249 ip = token.getIPAddress().getHostAddress();
254 if ( (ip != null) && isAllowedByIp(ip) ) {
268 + " requestDnsName, allowed = " + ip + ", "
483 private long stringToIp(String ip) throws PolicyException { argument
484 StringTokenizer st = new StringTokenizer(ip, ".");
487 String args[] = { "ip", i
537 isAllowedByIp(String ip) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/
H A DIPRange.java91 public boolean inRange(String ip) { argument
92 IPRange theIP = new IPRange(ip);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DIPv4Condition.java75 protected Long stringToIp(String ip) throws EntitlementException { argument
76 StringTokenizer st = new StringTokenizer(ip, ".");
79 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
88 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
91 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", s});
H A DIPv6Condition.java73 protected IPv6Address stringToIp(String ip) throws EntitlementException { argument
75 return IPv6Address.fromString(ip);
77 throw new EntitlementException(INVALID_PROPERTY_VALUE, new String[]{"ip", ip});
H A DIPvXCondition.java109 * @param ip A String representation of an IP value.
113 protected abstract T stringToIp(String ip) throws EntitlementException; argument
275 private boolean isDefinedStartIp(T ip) { argument
276 if (ip == null) {
281 return !initialStartIp.equals(ip);
288 private boolean isDefinedEndIp(T ip) { argument
289 if (ip == null) {
294 return !initialEndIp.equals(ip);
321 String ip = null;
323 ip
403 isAllowedByIp(String ip) argument
[all...]
H A DResourceEnvIPCondition.java855 // treat as single ip address
878 private long stringToIp(String ip) { argument
879 StringTokenizer st = new StringTokenizer(ip, ".");
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java223 String ip = IPCondition.getRequestIp(env);
224 if(ValidateIPaddress.isIPv4(ip)){
227 if (ip == null) {
229 ip = token.getIPAddress().getHostAddress();
234 if ( (ip != null) && isAllowedByIp(ip) ) {
248 + " requestDnsName, allowed = " + ip + ", "
406 String args[] = {"ip", endIpString};
440 String args[] = {"ip", startIpString};
482 * Checks of the ip fall
488 isAllowedByIp(String ip) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/network/ipv6/
H A DIPv6Condition.java223 String ip = IPCondition.getRequestIp(env);
224 if(ValidateIPaddress.isIPv4(ip)){
227 if (ip == null) {
229 ip = token.getIPAddress().getHostAddress();
234 if ( (ip != null) && isAllowedByIp(ip) ) {
248 + " requestDnsName, allowed = " + ip + ", "
406 String args[] = {"ip", endIpString};
440 String args[] = {"ip", startIpString};
482 * Checks of the ip fall
488 isAllowedByIp(String ip) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DResourceEnvIPCondition.java1207 // treat as single ip address
1244 private long stringToIp(String ip) throws PolicyException { argument
1245 StringTokenizer st = new StringTokenizer(ip, ".");
1248 String args[] = { "ip", ip };
1259 String args[] = { "ip", ip };
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DResourceEnvIPCondition.java1207 // treat as single ip address
1244 private long stringToIp(String ip) throws PolicyException { argument
1245 StringTokenizer st = new StringTokenizer(ip, ".");
1248 String args[] = { "ip", ip };
1259 String args[] = { "ip", ip };
/forgerock/web-agents-v4/source/
H A Dip.c63 * @return AM_TRUE if the string can be parsed as an ip v6 presentation
72 * @return AM_TRUE if the string can be parsed as an ip v4 presentation
81 * @return AM_TRUE if the section of a string can be parsed as an ip v6 presentation
98 * @return AM_TRUE if the section of a string can be parsed as an ip v4 presentation
134 * Convert ip v6 presentation to binary and set network mask if CIDR notation is present
162 return -1; /* ip v6 part fails */
166 * Convert ip v4 presentation to binary and set network mask if CIDR notation is present
194 return -1; /* ip v4 part fails */
200 * @return AM_TRUE if addr is within the masked ip v4 address range in net
222 * @return AM_TRUE if addr is within the masked ip v
339 read_full_ip6(const char * ip, struct in6_addr * p) argument
424 ip_address_match(const char *ip, const char **list, unsigned int listsize, unsigned long instance_id) argument
[all...]
/forgerock/web-agents-v4/source/iis/
H A Dagent.c859 char ip[INET6_ADDRSTRLEN]; local
917 unsigned long s = sizeof (ip);
920 memset(&ip[0], 0, sizeof (ip));
923 if (WSAAddressToStringA((LPSOCKADDR) ipv4, sizeof (*ipv4), NULL, ip, &s) == 0) {
924 char *b = strchr(ip, ':');
926 d.client_ip = ip;
930 if (WSAAddressToStringA((LPSOCKADDR) ipv6, sizeof (*ipv6), NULL, ip, &s) == 0) {
932 if (ip[0] == '[') {
933 memmove(ip, i
[all...]
/forgerock/opendj-b2.6/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2.6.2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 212 milliseconds

12