Moving README into main file
This commit is contained in:
parent
5ef1ff7090
commit
113527092e
|
@ -1,8 +0,0 @@
|
|||
|
||||
Weird attempt at writing an IRC bot in Tiger. Actually mostly worked,
|
||||
by wrapping the call in a specifically designed script to handle SSL
|
||||
and the connection. The Tiger implementation only needed to respond to
|
||||
messages on input, by writing to output.
|
||||
|
||||
Design started on 6. Marts 2019.
|
||||
|
5
run.sh
5
run.sh
|
@ -1,9 +1,12 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
LOG_SERVER_TO_CLIENT=./log_s2c.log
|
||||
LOG_CLIENT_TO_SERVER=./log_c2s.log
|
||||
TARGET_SERVER="irc.example.org"
|
||||
|
||||
CLIENT_RUNTIME="./tiger-bot.bin"
|
||||
COMMS_RUNTIME="openssl s_client -connect irc.guava.space:6697"
|
||||
COMMS_RUNTIME="openssl s_client -connect $TARGET_SERVER:6697"
|
||||
|
||||
# Ensure logs are new
|
||||
rm -f "$LOG_CLIENT_TO_SERVER"
|
||||
|
|
|
@ -1,3 +1,19 @@
|
|||
/*
|
||||
# Tiger-bot
|
||||
|
||||
Attempt at writing an IRC bot in Tiger. Actually mostly worked,
|
||||
by wrapping the call in a specifically designed script to handle SSL
|
||||
and the connection. The Tiger implementation only needed to respond to
|
||||
messages on input, by writing to output.
|
||||
|
||||
Design started on 6. Marts 2019.
|
||||
|
||||
## Usage
|
||||
|
||||
Run using `run.sh`.
|
||||
|
||||
Requires `openssl` utility.
|
||||
*/
|
||||
|
||||
let /* Parsing util */
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user