-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.txt
More file actions
32 lines (32 loc) · 1.19 KB
/
instructions.txt
File metadata and controls
32 lines (32 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ============================================
# Terminal Chat - Quick Reference
# ============================================
#
# LAUNCH:
# ./bin/terminal-chat.py
#
# Or directly with Python:
# python3 src/main.py listen <port> <password> [username]
# python3 src/main.py connect <ip> <port> <password> [username]
#
# COMMANDS IN CHAT:
# /upload <file> → Upload to shared folder (public)
# /upload <file> @user → Upload privately for specific user
# /download <file> → Download from shared or inbox
# /list → List shared folder contents
# /inbox → List inbox contents
# /outbox → List outbox contents
# /help → Show available commands
# /quit → Exit chat
# Ctrl+C → Exit chat
#
# FEATURES:
# • Multi-client chat with AES-256 encryption
# • Unique usernames (no duplicates)
# • Public shared folder for all users
# • Private file sharing via inbox/outbox
# • Permission-based file access control
# • Server can receive private files (@Admin)
#
# For detailed instructions, see: docs/USER_MANUAL.txt
# ============================================