efl/src/examples/ecore/.gitignore

74 lines
1.9 KiB
Plaintext
Raw Normal View History

/ecore_animator_example
/ecore_audio_custom
/ecore_audio_playback
/ecore_audio_to_ogg
/ecore_client_bench
/ecore_compose_get_example
/ecore_con_client_example
/ecore_con_client_simple_example
/ecore_con_eet_client_example
/ecore_con_eet_server_example
/ecore_con_lookup_example
/ecore_con_server_example
/ecore_con_server_http_example
/ecore_con_server_simple_example
/ecore_con_url_cookies_example
/ecore_con_url_download_example
/ecore_con_url_ftp_example
/ecore_con_url_headers_example
/ecore_evas_basics_example
/ecore_evas_buffer_example_01
/ecore_evas_buffer_example_02
/ecore_evas_callbacks
/ecore_evas_cursor_example
/ecore_evas_ews_example
/ecore_evas_extn_plug_example
/ecore_evas_extn_socket_example
/ecore_evas_object_example
/ecore_evas_wayland_multiseat_example
/ecore_evas_window_sizes_example
/ecore_evas_vnc_example
/ecore_event_example_01
/ecore_event_example_02
/ecore_exe_example
/ecore_exe_example_child
/ecore_fd_handler_example
/ecore_file_download_example
/ecore_getopt_example
/ecore_idler_example
/ecore_input_joystick_example
/ecore_imf_example
/ecore_job_example
/ecore_pipe_gstreamer_example
/ecore_pipe_simple_example
/ecore_poller_example
/ecore_server_bench
/ecore_thread_example
/ecore_time_functions_example
/ecore_timer_example
/ecore_buffer_example
/ecore_buffer_consumer_example
/ecore_buffer_provider_example
/efl_io_copier_example
/efl_io_copier_simple_example
/efl_io_queue_example
/efl_io_buffered_stream_example
/efl_net_server_example
/efl_net_server_simple_example
/efl_net_dialer_http_example
/efl_net_dialer_websocket_example
/efl_net_dialer_websocket_autobahntestee
/efl_net_dialer_udp_example
/efl_net_dialer_simple_example
/efl_net_dialer_unix_example
/ecore_evas_vnc
/efl_net_socket_ssl_dialer_example
/efl_net_socket_ssl_server_example
/*.pem
efl_net_session and efl_net_control for ConnMan These are objects to allow control of networking devices (efl_net_control) as well as an application to request for connectivity (efl_net_session). They are loosely based on ConnMan.org, which we already use in Enlightenment Window Manager via DBus access with Eldbus. However they do not map 1:1 as the goal was to expose a viable subset of controls but in a simple and general way, thus nome strings were converted to enums, some arrays of strings were converted to bitwise flags, some names were made more general, such as "service" was turned into "access point" so it doesn't generate confusion with other "network services" (ie: http server), or "favorite" that was renamed to "remembered". Some behavior are slightly different (yet able to be implemented on top), such as "Service.MoveBefore" and "MoveAfter" were converted to a numeric "priority", calculated from service's list index, changing the priority will reoder the list and thus generate the MoveBefore and MoveAfter DBus commands. ConnMan was chosen not only because we already use it, but because its DBus API is sane and simple, with the server doing almost all that we need. This is visible in the efl_net_session, which is completely done in the server and do not require any extra work on our side -- aside from talking DBus and converting to Eo, which is a major work :-D NOTE: ConnMan doesn't use FreeDesktop.Org DBus interfaces such as Properties and ObjectManager, thus we cannot use eldbus_model_object. There are two examples added: - efl_net_session_example: monitors the connection available for an application and try to connect. You need a connman compiled with session_policy_local and a configuration file explained in https://github.com/aldebaran/connman/blob/master/doc/session-policy-format.txt to get a connection if nothing is connected. Otherwise it will just monitor the connectivity state. - efl_net_control_example: monitors, plays the agent and configure the network details. It can enable/disable technologies, connect to access points (services) and configure them. It's quite extensive as allows testing all of ConnMan's DBus API except P2P (Peers).
2016-09-15 17:43:19 -07:00
/efl_net_session_example
/efl_net_control_example
/efl_net_ip_address_example
/ecore_ipc_server_example
/ecore_ipc_client_example
/ecore_promise2_example