Increment version message for merge.

Incremented the version number by 0.1 for the server.
Added version splash to the client.
This commit is contained in:
Barry Kane 2021-09-10 15:07:42 +01:00
parent 7047d0ee08
commit 9411803942
2 changed files with 5 additions and 2 deletions

View File

@ -82,6 +82,9 @@ int main(int argc, char **argv)
// Set the SIGINT handler.
signal(SIGINT, sigintHandler);
// Print welcome message:
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK CLIENT ====--\nVersion Alpha 0.2\n", 5000);
// Give me a socket, and make sure it's working:
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd == -1)

View File

@ -29,7 +29,7 @@ int main()
// Give an intro: Display the Silverkin Industries logo and splash text.
slowPrint(logostring, 3000);
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.1\n", 5000);
slowPrint("\n--==== \033[33;40mSILVERKIN INDUSTRIES\033[0m COMM-LINK SERVER ====--\nVersion Alpha 0.2\n", 5000);
// Initialize the sockets to 0, so we don't crash.
for (int index = 0; index < maxClients; index++)