]> Kevux Git Server - kevux-tools/commit
Feature: Initial addition of the "TacocaT" program.
authorKevin Day <kevin@kevux.org>
Wed, 28 Jun 2023 03:13:12 +0000 (22:13 -0500)
committerKevin Day <kevin@kevux.org>
Wed, 28 Jun 2023 03:13:12 +0000 (22:13 -0500)
commitcd724104a8cfaad4670fcc33a11c0908f168d17c
tree55026e5f2ae516bcf614029ade7eb61b1b7c4e38
parentb05d02ab80a492cecddb7957f9407e69d28a8762
Feature: Initial addition of the "TacocaT" program.

The "TacocaT" program is intended to be similar to netcat.
To concatenate multiple network connections in this context simply means to transfer data from one point to another.

The intent and purpose of this program is really to test my network connection software.

This program is only stubbed out at this point in time.

I need to figure out how I want the data files to be setup.
The network code is not implemented at all, yet.

I also decided to tease my plans on improving the existing Kevux DNS alternative network resolution methodology.
32 files changed:
data/build/tacocat/defines [new file with mode: 0644]
data/build/tacocat/dependencies [new file with mode: 0644]
data/build/tacocat/fakefile [new file with mode: 0644]
data/build/tacocat/settings [new file with mode: 0644]
sources/c/tacocat/main/common.c [new file with mode: 0644]
sources/c/tacocat/main/common.h [new file with mode: 0644]
sources/c/tacocat/main/common/define.c [new file with mode: 0644]
sources/c/tacocat/main/common/define.h [new file with mode: 0644]
sources/c/tacocat/main/common/enumeration.c [new file with mode: 0644]
sources/c/tacocat/main/common/enumeration.h [new file with mode: 0644]
sources/c/tacocat/main/common/print.c [new file with mode: 0644]
sources/c/tacocat/main/common/print.h [new file with mode: 0644]
sources/c/tacocat/main/common/string.c [new file with mode: 0644]
sources/c/tacocat/main/common/string.h [new file with mode: 0644]
sources/c/tacocat/main/common/type.c [new file with mode: 0644]
sources/c/tacocat/main/common/type.h [new file with mode: 0644]
sources/c/tacocat/main/main.c [new file with mode: 0644]
sources/c/tacocat/main/main.h [new file with mode: 0644]
sources/c/tacocat/main/print/error.c [new file with mode: 0644]
sources/c/tacocat/main/print/error.h [new file with mode: 0644]
sources/c/tacocat/main/print/message.c [new file with mode: 0644]
sources/c/tacocat/main/print/message.h [new file with mode: 0644]
sources/c/tacocat/main/print/verbose.c [new file with mode: 0644]
sources/c/tacocat/main/print/verbose.h [new file with mode: 0644]
sources/c/tacocat/main/print/warning.c [new file with mode: 0644]
sources/c/tacocat/main/print/warning.h [new file with mode: 0644]
sources/c/tacocat/main/signal.c [new file with mode: 0644]
sources/c/tacocat/main/signal.h [new file with mode: 0644]
sources/c/tacocat/main/tacocat.c [new file with mode: 0644]
sources/c/tacocat/main/tacocat.h [new file with mode: 0644]
sources/c/tacocat/main/thread.c [new file with mode: 0644]
sources/c/tacocat/main/thread.h [new file with mode: 0644]