]> Kevux Git Server - kevux-tools/commitdiff
Progress: Continue work regarding TacocaT.
authorKevin Day <kevin@kevux.org>
Tue, 4 Jul 2023 03:59:07 +0000 (22:59 -0500)
committerKevin Day <kevin@kevux.org>
Tue, 4 Jul 2023 03:59:07 +0000 (22:59 -0500)
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.

data/build/tacocat/dependencies
data/build/tacocat/settings
documents/readme.tacocat.txt
sources/c/tacocat/main/common/type.c
sources/c/tacocat/main/common/type.h
sources/c/tacocat/main/main.c
sources/c/tacocat/main/process.c
sources/c/tacocat/main/tacocat.h

index e8cbd07124e8a684a979db08a9eab515aad14cf1..a58383055afafec2ccfdc9a2e82e41755cafb812 100644 (file)
@@ -15,6 +15,7 @@ f_path
 f_pipe
 f_print
 f_signal
+f_socket
 f_thread
 
 fl_print
index f768bacdbae1b1ce68c9f0bc14ba1cbf4ec2aa51..154bf091bc101c6606d3b17cb31f85d880a5e02a 100644 (file)
@@ -32,7 +32,7 @@ build_indexer_arguments rcs
 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
index d329bd52555be4ecc9a6b27a4482f0f012f36ab3..34ca94ff8cf2428d923659a602399b190970eef9 100644 (file)
@@ -2,26 +2,22 @@
 #
 # 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.
index 194bf746a559fe90d4e19b67314d401dd11c4340..126f4e093f79b675ff92f64219255e24b5e99054 100644 (file)
@@ -19,8 +19,6 @@ extern "C" {
 
     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) {
@@ -34,9 +32,10 @@ extern "C" {
     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);
 
index f15206d7fcafd7193cb58f017ecbf3be3379bf29..0461bfe23ad74fa578b7b125157c5a471c4d1fd9 100644 (file)
@@ -30,13 +30,13 @@ extern "C" {
  * 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.
@@ -51,13 +51,13 @@ extern "C" {
     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;
@@ -70,11 +70,10 @@ extern "C" {
       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, \
index 6461419728bb59aaa3ac4e32aaee18e20793334b..eccc190dbe604ce3d66482755ea1874f134c4e2a 100644 (file)
@@ -43,7 +43,7 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
       kt_tacocat_setting_load(arguments, &data);
     }
 
-    status_code_main(&data);
+    kt_tacocat_main(&data);
   #else
     {
       f_thread_id_t id_signal;
index d457c6077f62b5c303eeb50f17392a69b35d7d2e..2ff13ddad2930a3cf553f1260eb812921e702367 100644 (file)
@@ -9,6 +9,8 @@ extern "C" {
 
     if (!main) return;
 
+    f_number_unsigned_t i = 0;
+
     // @todo:
     //   1: Establish connections.
     //   2: read / write from files.
index 2b63e949801b28bf7aecbe984a1a330c0991f8a0..92c32bee830871c08b57e1a0fac3d6acc1bc43ba 100644 (file)
@@ -33,6 +33,7 @@
 #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.