Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

orber_acl(3erl) [linux man page]

orber_acl(3erl) 					     Erlang Module Definition						   orber_acl(3erl)

NAME
orber_acl - Orber ACL operations DESCRIPTION
This module contains functions intended for analyzing Access Control List (ACL) filters. The filters uses a extended format of Classless Inter Domain Routing (CIDR). For example, "123.123.123.10" limits the connection to that particular host, while "123.123.123.10/17" allows connections to or from any host equal to the 17 most significant bits. Orber also allow the user to specify a certain port or port range, for example, "123.123.123.10/17#4001" and "123.123.123.10/17#4001/5001" respectively. IPv4 or none compressed IPv6 strings are accepted. EXPORTS
match(IP, Direction) -> boolean() match(IP, Direction, GetInfo) -> Reply Types IP = tuple() | [integer()] Direction = tcp_in | ssl_in | tcp_out | ssl_out GetInfo = boolean() Reply = boolean() | {boolean(), [Interface], PortInfo} Interface = string() PortInfo = integer() | {integer(), integer()} If GetInfo is not supplied or set to false, this operation returns a boolean which tells if the IPv4 or IPv6 address would pass the ACL filter, defined by the iiop_acl configuration parameter, or not. When GetInfo is set to true, a tuple which, besides the boolean that tells if access was granted, also include the defined interfaces and port(s). This operation requires that Orber is running and can be used on a live node to determine if Orber has been properly configured. verify(IP, Filter, Family) -> Reply Types IP = string() Filter = string() Family = inet | inet6 Reply = true | {false, From, To} | {error, string()} From = string() To = string() This operation returns true if the IPv4 or IPv6 address would pass the supplied ACL. If that is not the case, a tuple containing the accepted range is returned. This operation should only be used for test purposes. range(Filter, Family) -> Reply Types Filter = string() Family = inet | inet6 Reply = {ok, From, To} | {error, string()} From = string() To = string() Returns the range of accepted IP addresses based on the supplied filter. This operation should only be used for test purposes. Ericsson AB orber 3.6.20 orber_acl(3erl)

Check Out this Related Man Page

CosPropertyService_PropertySet(3erl)			     Erlang Module Definition			      CosPropertyService_PropertySet(3erl)

NAME
CosPropertyService_PropertySet - This module implements the OMG CosPropertyService::PropertySet interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
define_property(PropertySet, Name, Value) -> Reply Types PropertySet = #objref Name = non-empty string() Value = #any Reply = ok | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} | {'EXCEPTION', #CosPropertyService_ConflictingProp- erty{}} | {'EXCEPTION', #CosPropertyService_UnsupportedTypeCode{}} | {'EXCEPTION', #CosPropertyService_UnsupportedProperty{}} | {'EXCEPTION', #CosPropertyService_ReadOnlyProperty{}} This operation adds a new property to the given object. Depending on which initial arguments was supplied when starting the object several exceptions may be raised. define_properties(PropertySet, Properties) -> Reply Types PropertySet = #objref Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] Name = string() Value = #any Reply = ok | {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property This operation adds several new properties to the given object. Depending on which initial arguments was supplied when starting the object an exceptions may be raised listing the properties failing. get_number_of_properties(PropertySet) -> ulong() Types PropertySet = #objref This operation returns the number of properties associated with the target object. get_all_property_names(PropertySet, Max) -> Reply Types PropertySet = NamesIterator = #objref Max = ulong() Reply = {ok, Names, NamesIterator} Names = [string()] This operation returns up to Max property names. If the target object have additional associated properties they will be put in the returned Iterator, otherwise the Iterator will be a NIL object. get_property_value(PropertySet, Name) -> Reply Types PropertySet = #objref Name = string() Reply = #any | {'EXCEPTION', #CosPropertyService_PropertyNotFound{}} | {'EXCEPTION', #CosPropertyService_InvalidProperty- Name{}} This operation returns the property value associated with given name. If no such property exists or the given name is an empty string an exception will be raised. get_properties(PropertySet, Names) -> Reply Types PropertySet = #objref Names = [string()] Reply = {boolean(), Properties} Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] This operation returns all properties associated with given names. If the boolean flag is true all properties where retrieved cor- rectly, otherwise, all properties with the type tk_void was not found. get_all_properties(PropertySet, Max) -> Reply Types PropertySet = PropertiesIterator = #objref Reply = {ok, Properties, PropertiesIterator} Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] This operation return a list Max properties or less. If more properties are associated with the target object they will be put in the PropertiesIterator . If the object had less than Max associated properties the Iterator will be a NIL object. delete_property(PropertySet, Name) -> Reply Types PropertySet = #objref Name = string() Reply = ok | {'EXCEPTION', #CosPropertyService_FixedProperty{}} | {'EXCEPTION', #CosPropertyService_PropertyNotFound{}} | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} This operation tries to delete the property with given Name. An exception which indicates why it failed is raised if so needed. delete_properties(PropertySet, Names) -> Reply Types PropertySet = #objref Names = [string()] Reply = ok | {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property This operation tries to delete all given Properties. If one or more removal fails an exception is raised which describe why. delete_all_properties(PropertySet) -> boolean() Types PropertySet = #objref This operation deletes all properties. The boolean flag, if set to false, indicates that it was not possible to remove one or more properties, e.g., may be read only. is_property_defined(PropertySet, Name) -> Reply Types PropertySet = #objref Name = non-empty string() Reply = boolean() | {'EXCEPTION', #CosPropertyService_InvalidPropertyName{}} This operation returns true if the target have an associated property with given name. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertySet(3erl)
Man Page