This further removes no longer supported functionality that was not previously fully removed.
This adds the f_sockets_t in preparation for opening the sockets.
f_pipe
f_print
f_signal
+f_socket
f_thread
fl_print
build_language c
build_libraries -lc
-build_libraries-individual -lfll_error -lfll_print -lfll_program -lfl_print -lf_color -lf_compare -lf_console -lf_file -lf_memory -lf_network -lf_path -lf_pipe -lf_print -lf_signal -lf_string -lf_type_array -lf_utf
+build_libraries-individual -lfll_error -lfll_print -lfll_program -lfl_print -lf_color -lf_compare -lf_console -lf_file -lf_memory -lf_network -lf_path -lf_pipe -lf_print -lf_signal -lf_socket -lf_string -lf_type_array -lf_utf
build_libraries-individual_thread -lf_thread
build_libraries-level -lfll_2 -lfll_1 -lfll_0
build_libraries-monolithic -lfll
#
# license: cc-by-sa-4.0
#
-# This file (assumed to be named readme.remove.txt) can be more easily read using the following iki_read commands:
-# iki_read readme.tacocate.txt +Q -w -rrr FLL FLL PID PID DNS DNS -WW character "'" "'" code '"' '"'
+# This file (assumed to be named readme.tacocat.txt) can be more easily read using the following iki_read commands:
+# iki_read readme.tacocat.txt +Q -w -rr FLL FLL DNS DNS -WW character "'" "'" code '"' '"'
#
-# To read the "Remove Readme Documentation" section of this file, use this command sequence:
-# fss_basic_list_read readme.tacocate.txt +Q -cn "TacocaT Readme Documentation" | iki_read +Q -w -rrr FLL FLL PID PID DNS DNS -WW character "'" "'" code '"' '"'
+# To read the "TacocaT Readme Documentation" section of this file, use this command sequence:
+# fss_basic_list_read readme.tacocat.txt +Q -cn "TacocaT Readme Documentation" | iki_read +Q -w -rr FLL FLL DNS DNS -WW character "'" "'" code '"' '"'
#
TacocaT Readme Documentation:
The bold:"tacocat" is a program for sending and receiving files, mainly for testing purposes.
- This program is similar to code:"netcat" or code:"nc".
+ This program is similar to code:"netcat" or code:"nc" but is not intended to function as a replacement for these tools.
The primary use for this is to test bold:"Featureless Linux Library" and bold:"Kevux Tools" network functionality.
The bold:"tacocat" program has the following arguments\:
- The code:"--background" (code:"-b") causes this program to run in the background.
- The code:"--from" (code:"-f") parameter is an address or socket file to listen to.
- The code:"--pid" (code:"-p") causes this program to create a PID:"Process Identifier" file.
- The code:"--pid_name" (code:"-N") parameter designates a custom PID:"Process Identifier" file name without the '.pid' extension or the directory path.
- The code:"--pid_path" (code:"-P") parameter designates a custom PID:"Process Identifier" directory path.\
+ The code:"--receive" (code:"-r") parameter is an address or socket file to listen to.
The code:"--resolve" (code:"-R") parameter designates a DNS:"Domain Name Resolver" mode, such as code:"classic" or code:"kevux".
- The code:"--to" (code:"-t") parameter is an address or socket file to transmit to.
+ The code:"--send" (code:"-s") parameter is an address or socket file to transmit to.
if (!setting) return F_status_set_error(F_parameter);
- f_file_close(&setting->pid_file);
-
f_number_unsigned_t i = 0;
for (; i < setting->file_receives.used ; ++i) {
f_files_resize(0, &setting->file_receives);
f_files_resize(0, &setting->file_sends);
+ f_sockets_resize(0, &setting->socket_receives);
+ f_sockets_resize(0, &setting->socket_sends);
+
f_string_dynamic_resize(0, &setting->buffer);
- f_string_dynamic_resize(0, &setting->pid_path);
- f_string_dynamic_resize(0, &setting->pid_name);
f_string_dynamics_resize(0, &setting->receives);
f_string_dynamics_resize(0, &setting->sends);
* status_thread: A status used eclusively by the threaded signal handler.
* state: The state data used when processing data.
*
- * pid_file: The PID file.
* file_receives: An array of input files.
* file_sends: An array of output files.
*
+ * socket_receives: An array of the network sockets for receiving.
+ * socket_sends: An array of the network sockets for sending.
+ *
* buffer: A string buffer used for caching purposes.
- * pid_name: The name of the PID file without the path and without the file extension (.pid).
- * pid_path: A file path to the directory containing the PID file.
*
* receives: An array of buffers for receiving data receive clients.
* sends: An array of buffers for sending data send clients.
f_status_t status_thread;
f_state_t state;
- f_file_t pid_file;
f_files_t file_receives;
f_files_t file_sends;
+ f_sockets_t socket_receives;
+ f_sockets_t socket_sends;
+
f_string_dynamic_t buffer;
- f_string_dynamic_t pid_path;
- f_string_dynamic_t pid_name;
f_string_dynamics_t receives;
f_string_dynamics_t sends;
kt_tacocat_block_size_send_d, \
F_none, \
macro_f_state_t_initialize_1(kt_tacocat_allocation_large_d, kt_tacocat_allocation_small_d, F_none, 0, 0, &fll_program_standard_signal_handle, 0, 0, 0, 0), \
- f_file_t_initialize, \
f_files_t_initialize, \
f_files_t_initialize, \
- f_string_dynamic_t_initialize, \
- f_string_dynamic_t_initialize, \
+ f_sockets_t_initialize, \
+ f_sockets_t_initialize, \
f_string_dynamic_t_initialize, \
f_string_dynamics_t_initialize, \
f_string_dynamics_t_initialize, \
kt_tacocat_setting_load(arguments, &data);
}
- status_code_main(&data);
+ kt_tacocat_main(&data);
#else
{
f_thread_id_t id_signal;
if (!main) return;
+ f_number_unsigned_t i = 0;
+
// @todo:
// 1: Establish connections.
// 2: read / write from files.
#include <fll/level_0/pipe.h>
#include <fll/level_0/print.h>
#include <fll/level_0/signal.h>
+#include <fll/level_0/socket.h>
#include <fll/level_0/thread.h>
// FLL-1 includes.