aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/const.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-08-22 13:40:27 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-08-23 21:44:04 +0200
commit1ce4acb85a3bcb953c0f9cc91d2edc855969948b (patch)
treec06abb52fef74d375c87a7bdf39e7777bbf1b3b1 /src/const.h
parentadd doc/rationale.md (diff)
downloadcimple-1ce4acb85a3bcb953c0f9cc91d2edc855969948b.tar.gz
cimple-1ce4acb85a3bcb953c0f9cc91d2edc855969948b.zip
add some code
A basic client-server app, the client sends commands as an array of strings. Hopefully I didn't mess up, and hopefully it'll be useful.
Diffstat (limited to 'src/const.h')
-rw-r--r--src/const.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/const.h b/src/const.h
new file mode 100644
index 0000000..53b0364
--- /dev/null
+++ b/src/const.h
@@ -0,0 +1,7 @@
+#ifndef __CONST_H__
+#define __CONST_H__
+
+#define DEFAULT_HOST "127.0.0.1"
+#define DEFAULT_PORT "5556"
+
+#endif