Lines Matching defs:parse_options

73 parse_options(Options) ->  function
76 parse_options([], State) -> function
78 parse_options([{name, L} | Rest], State) when is_list(L) -> function
81 parse_options([{name, A} | Rest], State) when is_atom(A) -> function
84 parse_options([{name, Name} | Rest], State) -> function
86 parse_options([{port, L} | Rest], State) when is_list(L) -> function
89 parse_options([{port, Port} | Rest], State) -> function
91 parse_options([{ip, Ip} | Rest], State) -> function
102 parse_options([{socket_opts, L} | Rest], State) when is_list(L), length(L) > 0 -> function
105 parse_options([{handler, []} | _Rest], _State) -> function
107 parse_options([{handler, ServiceHandlerPropertyList} | Rest], State) when is_list(ServiceHandlerPro… function
123 parse_options([{handler, Handler} | Rest], State) when State#thrift_socket_server.handler == undefi… function
126 parse_options([{service, []} | _Rest], _State) -> function
128 parse_options([{service, ServiceModulePropertyList} | Rest], State) when is_list(ServiceModulePrope… function
141 parse_options([{service, Service} | Rest], State) when State#thrift_socket_server.service == undefi… function
144 parse_options([{max, Max} | Rest], State) -> function
153 parse_options([{protocol, Proto} | Rest], State) when is_atom(Proto) -> function
156 parse_options([{framed, Framed} | Rest], State) when is_boolean(Framed) -> function
159 parse_options([{ssltransport, SSLTransport} | Rest], State) when is_boolean(SSLTransport) -> function
161 parse_options([{ssloptions, SSLOptions} | Rest], State) when is_list(SSLOptions) -> function