1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 18:27:45 +02:00
toxic/src/main.c

591 lines
15 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* main.c
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Toxic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Toxic. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef SIGWINCH
#define SIGWINCH 28
#endif
#include <curses.h>
2013-08-08 16:00:12 +02:00
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
2013-08-11 02:59:16 +02:00
#include <signal.h>
#include <locale.h>
2013-08-23 23:03:44 +02:00
#include <string.h>
2013-11-15 01:14:54 +01:00
#include <time.h>
2014-03-13 11:06:53 +01:00
#include <pthread.h>
2013-08-28 19:04:54 +02:00
#ifdef _WIN32
#include <direct.h>
#include <winsock2.h>
#include <ws2tcpip.h>
2013-08-08 16:00:12 +02:00
#else
#include <netdb.h>
2013-08-08 16:00:12 +02:00
#include <sys/stat.h>
#include <sys/types.h>
2013-08-23 23:03:44 +02:00
#include <sys/socket.h>
2014-03-07 03:14:04 +01:00
#include <unistd.h>
2013-08-08 16:00:12 +02:00
#endif
#include <tox/tox.h>
#include "configdir.h"
#include "toxic_windows.h"
2013-08-13 00:50:43 +02:00
#include "friendlist.h"
#include "prompt.h"
#include "misc_tools.h"
#include "file_senders.h"
2014-03-25 08:17:22 +01:00
#include "line_info.h"
2014-04-07 10:42:10 +02:00
#include "settings.h"
2014-03-07 03:14:04 +01:00
#ifdef _SUPPORT_AUDIO
#include "audio_call.h"
#endif /* _SUPPORT_AUDIO */
2013-08-25 01:16:43 +02:00
#ifndef PACKAGE_DATADIR
#define PACKAGE_DATADIR "."
#endif
2013-09-09 06:56:47 +02:00
2014-03-08 16:36:42 +01:00
#ifdef _SUPPORT_AUDIO
ToxAv* av;
#endif /* _SUPPORT_AUDIO */
2013-08-15 12:11:48 +02:00
/* Export for use in Callbacks */
char *DATA_FILE = NULL;
ToxWindow *prompt = NULL;
2014-02-25 08:28:24 +01:00
static int f_loadfromfile; /* 1 if we want to load from/save the data file, 0 otherwise */
2013-11-30 00:52:21 +01:00
2014-03-13 11:06:53 +01:00
struct _Winthread Winthread;
2014-04-07 10:42:10 +02:00
struct user_settings *user_settings = NULL;
2014-03-13 11:06:53 +01:00
2013-08-16 19:11:09 +02:00
void on_window_resize(int sig)
2013-08-11 02:59:16 +02:00
{
refresh();
clear();
}
static void init_term(void)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
/* Setup terminal */
signal(SIGWINCH, on_window_resize);
#if HAVE_WIDECHAR
if (setlocale(LC_ALL, "") == NULL) {
fprintf(stderr, "Could not set your locale, plese check your locale settings or"
"disable wide char support\n");
exit(EXIT_FAILURE);
}
#endif
2013-08-16 19:11:09 +02:00
initscr();
cbreak();
keypad(stdscr, 1);
noecho();
timeout(100);
if (has_colors()) {
short bg_color = COLOR_BLACK;
2013-08-16 19:11:09 +02:00
start_color();
if (user_settings->colour_theme == NATIVE_COLS) {
if (assume_default_colors(-1,-1) == OK)
bg_color = -1;
}
init_pair(0, COLOR_WHITE, COLOR_BLACK);
init_pair(1, COLOR_GREEN, bg_color);
init_pair(2, COLOR_CYAN, bg_color);
init_pair(3, COLOR_RED, bg_color);
init_pair(4, COLOR_BLUE, bg_color);
init_pair(5, COLOR_YELLOW, bg_color);
init_pair(6, COLOR_MAGENTA, bg_color);
2013-08-18 04:43:10 +02:00
init_pair(7, COLOR_BLACK, COLOR_BLACK);
init_pair(8, COLOR_BLACK, COLOR_WHITE);
2013-08-16 19:11:09 +02:00
}
refresh();
}
2013-12-02 15:02:34 +01:00
static Tox *init_tox(int ipv4)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
/* Init core */
2013-12-02 15:02:34 +01:00
int ipv6 = !ipv4;
Tox *m = tox_new(ipv6);
2013-10-10 10:52:05 +02:00
/*
* TOX_ENABLE_IPV6_DEFAULT is always 1.
* Checking it is redundant, this *should* be doing ipv4 fallback
*/
2014-03-05 07:01:10 +01:00
if (ipv6 && m == NULL) {
fprintf(stderr, "IPv6 didn't initialize, trying IPv4\n");
m = tox_new(0);
}
if (m == NULL)
return NULL;
2013-08-16 19:11:09 +02:00
/* Callbacks */
tox_callback_connection_status(m, on_connectionchange, NULL);
2014-02-23 10:28:33 +01:00
tox_callback_typing_change(m, on_typing_change, NULL);
tox_callback_friend_request(m, on_request, NULL);
tox_callback_friend_message(m, on_message, NULL);
tox_callback_name_change(m, on_nickchange, NULL);
tox_callback_user_status(m, on_statuschange, NULL);
tox_callback_status_message(m, on_statusmessagechange, NULL);
tox_callback_friend_action(m, on_action, NULL);
2013-09-15 22:38:38 +02:00
tox_callback_group_invite(m, on_groupinvite, NULL);
tox_callback_group_message(m, on_groupmessage, NULL);
2013-12-14 02:57:32 +01:00
tox_callback_group_action(m, on_groupaction, NULL);
tox_callback_group_namelist_change(m, on_group_namelistchange, NULL);
tox_callback_file_send_request(m, on_file_sendrequest, NULL);
2013-10-10 10:52:05 +02:00
tox_callback_file_control(m, on_file_control, NULL);
tox_callback_file_data(m, on_file_data, NULL);
2013-08-18 17:59:34 +02:00
#ifdef __linux__
tox_set_name(m, (uint8_t *) "Cool guy", strlen("Cool guy"));
2013-08-28 19:04:54 +02:00
#elif defined(_WIN32)
tox_set_name(m, (uint8_t *) "I should install GNU/Linux", strlen("I should install GNU/Linux"));
2013-08-19 09:23:40 +02:00
#elif defined(__APPLE__)
tox_set_name(m, (uint8_t *) "Hipster", strlen("Hipster")); /* This used to users of other Unixes are hipsters */
2013-08-18 17:59:34 +02:00
#else
tox_set_name(m, (uint8_t *) "Registered Minix user #4", strlen("Registered Minix user #4"));
2013-08-18 17:59:34 +02:00
#endif
2013-10-10 10:52:05 +02:00
2013-08-16 19:11:09 +02:00
return m;
}
#define MINLINE 50 /* IP: 7 + port: 5 + key: 38 + spaces: 2 = 70. ! (& e.g. tox.im = 6) */
#define MAXLINE 256 /* Approx max number of chars in a sever line (name + port + key) */
2014-03-03 16:55:10 +01:00
#define MAXNODES 50
#define NODELEN (MAXLINE - TOX_CLIENT_ID_SIZE - 7)
2013-08-10 21:46:29 +02:00
static int linecnt = 0;
2014-03-03 16:55:10 +01:00
static char nodes[MAXNODES][NODELEN];
static uint16_t ports[MAXNODES];
static uint8_t keys[MAXNODES][TOX_CLIENT_ID_SIZE];
static int nodelist_load(char *filename)
2013-08-10 21:46:29 +02:00
{
if (!filename)
return 1;
FILE *fp = fopen(filename, "r");
2013-08-16 19:11:09 +02:00
if (fp == NULL)
2013-08-16 19:11:09 +02:00
return 1;
char line[MAXLINE];
2014-03-03 16:55:10 +01:00
while (fgets(line, sizeof(line), fp) && linecnt < MAXNODES) {
if (strlen(line) > MINLINE) {
char *name = strtok(line, " ");
char *port = strtok(NULL, " ");
char *key_ascii = strtok(NULL, " ");
/* invalid line */
if (name == NULL || port == NULL || key_ascii == NULL)
continue;
2014-03-03 16:55:10 +01:00
strncpy(nodes[linecnt], name, NODELEN);
nodes[linecnt][NODELEN - 1] = 0;
ports[linecnt] = htons(atoi(port));
uint8_t *key_binary = hex_string_to_bin(key_ascii);
memcpy(keys[linecnt], key_binary, TOX_CLIENT_ID_SIZE);
free(key_binary);
linecnt++;
}
2013-08-16 19:11:09 +02:00
}
if (linecnt < 1) {
fclose(fp);
return 2;
}
2013-08-10 21:46:29 +02:00
fclose(fp);
return 0;
}
2013-08-16 19:11:09 +02:00
2014-02-25 01:18:43 +01:00
int init_connection_helper(Tox *m, int line)
{
2014-03-03 16:55:10 +01:00
return tox_bootstrap_from_address(m, nodes[line], TOX_ENABLE_IPV6_DEFAULT,
2014-02-25 01:18:43 +01:00
ports[line], keys[line]);
}
2013-08-16 19:11:09 +02:00
2014-03-03 16:55:10 +01:00
/* Connects to a random DHT node listed in the DHTnodes file
*
* return codes:
2014-03-03 16:55:10 +01:00
* 1: failed to open node file
* 2: no line of sufficient length in node file
2014-02-25 01:41:02 +01:00
* 3: failed to resolve name to IP
2014-03-03 16:55:10 +01:00
* 4: nodelist file contains no acceptable line
*/
2014-02-25 01:18:43 +01:00
static bool srvlist_loaded = false;
#define NUM_INIT_NODES 5
int init_connection(Tox *m)
{
2014-03-03 16:55:10 +01:00
if (linecnt > 0) /* already loaded nodelist */
2014-02-25 01:41:02 +01:00
return init_connection_helper(m, rand() % linecnt) ? 0 : 3;
/* only once:
2014-03-03 16:55:10 +01:00
* - load the nodelist
* - connect to "everyone" inside
*/
2014-02-25 01:18:43 +01:00
if (!srvlist_loaded) {
srvlist_loaded = true;
int res = nodelist_load(PACKAGE_DATADIR "/DHTnodes");
if (linecnt < 1)
return res;
2014-02-25 01:41:02 +01:00
res = 3;
int i;
int n = MIN(NUM_INIT_NODES, linecnt);
2014-03-13 11:06:53 +01:00
for(i = 0; i < n; ++i) {
if (init_connection_helper(m, rand() % linecnt))
res = 0;
2014-03-13 11:06:53 +01:00
}
return res;
}
2013-08-16 19:11:09 +02:00
2014-03-03 16:55:10 +01:00
/* empty nodelist file */
2014-02-25 01:41:02 +01:00
return 4;
2013-08-10 21:46:29 +02:00
}
2014-02-22 23:58:36 +01:00
static void do_connection(Tox *m, ToxWindow *prompt)
2013-08-07 00:27:51 +02:00
{
2014-03-25 08:17:22 +01:00
uint8_t msg[MAX_STR_SIZE] = {0};
2013-08-16 19:11:09 +02:00
static int conn_try = 0;
static int conn_err = 0;
static bool dht_on = false;
2014-02-22 23:58:36 +01:00
bool is_connected = tox_isconnected(m);
if (!dht_on && !is_connected && !(conn_try++ % 100)) {
2013-08-16 19:11:09 +02:00
if (!conn_err) {
if ((conn_err = init_connection(m))) {
2014-03-25 08:17:22 +01:00
snprintf(msg, sizeof(msg), "\nAuto-connect failed with error code %d", conn_err);
}
2013-08-16 19:11:09 +02:00
}
2014-02-22 23:58:36 +01:00
} else if (!dht_on && is_connected) {
2013-08-16 19:11:09 +02:00
dht_on = true;
2013-09-07 03:37:16 +02:00
prompt_update_connectionstatus(prompt, dht_on);
2014-03-25 08:17:22 +01:00
snprintf(msg, sizeof(msg), "DHT connected.");
2014-02-22 23:58:36 +01:00
} else if (dht_on && !is_connected) {
2013-08-16 19:11:09 +02:00
dht_on = false;
2013-09-07 03:37:16 +02:00
prompt_update_connectionstatus(prompt, dht_on);
2014-03-25 08:17:22 +01:00
snprintf(msg, sizeof(msg), "\nDHT disconnected. Attempting to reconnect.");
2013-08-13 04:04:07 +02:00
}
2014-03-25 08:17:22 +01:00
if (msg[0])
line_info_add(prompt, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
}
2014-03-05 14:01:12 +01:00
static void load_friendlist(Tox *m)
{
2014-04-11 00:16:27 +02:00
uint32_t i;
2014-03-05 14:01:12 +01:00
uint32_t numfriends = tox_count_friendlist(m);
for (i = 0; i < numfriends; ++i)
friendlist_onFriendAdded(NULL, m, i, false);
}
2013-08-15 12:11:48 +02:00
/*
* Store Messenger to given location
* Return 0 stored successfully
2013-09-09 06:56:47 +02:00
* Return 1 file path is NULL
* Return 2 malloc failed
* Return 3 opening path failed
* Return 4 fwrite failed
2013-08-15 12:11:48 +02:00
*/
2013-08-23 23:03:44 +02:00
int store_data(Tox *m, char *path)
2013-08-07 00:27:51 +02:00
{
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
return 0;
2013-08-16 19:11:09 +02:00
2013-09-09 06:56:47 +02:00
if (path == NULL)
return 1;
2013-08-15 12:11:48 +02:00
FILE *fd;
size_t len;
uint8_t *buf;
2013-08-23 23:03:44 +02:00
len = tox_size(m);
buf = malloc(len);
2013-08-16 19:11:09 +02:00
2013-09-09 21:33:15 +02:00
if (buf == NULL)
2013-09-09 06:56:47 +02:00
return 2;
2013-08-16 19:11:09 +02:00
2013-08-23 23:03:44 +02:00
tox_save(m, buf);
2013-09-24 23:47:42 +02:00
fd = fopen(path, "wb");
2013-08-16 19:11:09 +02:00
2013-08-07 00:27:51 +02:00
if (fd == NULL) {
2013-08-15 12:11:48 +02:00
free(buf);
2013-09-09 06:56:47 +02:00
return 3;
}
2013-08-15 12:11:48 +02:00
if (fwrite(buf, len, 1, fd) != 1) {
free(buf);
fclose(fd);
2013-09-09 06:56:47 +02:00
return 4;
2013-08-15 12:11:48 +02:00
}
free(buf);
fclose(fd);
return 0;
}
2013-08-23 23:03:44 +02:00
static void load_data(Tox *m, char *path)
2013-08-15 12:11:48 +02:00
{
if (f_loadfromfile == 0) /*If file loading/saving is disabled*/
return;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
FILE *fd;
size_t len;
uint8_t *buf;
2013-09-24 21:23:09 +02:00
if ((fd = fopen(path, "rb")) != NULL) {
2013-08-15 12:11:48 +02:00
fseek(fd, 0, SEEK_END);
len = ftell(fd);
fseek(fd, 0, SEEK_SET);
buf = malloc(len);
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if (buf == NULL) {
fclose(fd);
endwin();
2013-09-12 07:33:41 +02:00
fprintf(stderr, "malloc() failed. Aborting...\n");
exit(EXIT_FAILURE);
2013-08-15 12:11:48 +02:00
}
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if (fread(buf, len, 1, fd) != 1) {
free(buf);
fclose(fd);
endwin();
2013-09-12 07:33:41 +02:00
fprintf(stderr, "fread() failed. Aborting...\n");
exit(EXIT_FAILURE);
2013-08-15 12:11:48 +02:00
}
2013-08-16 19:11:09 +02:00
2013-08-23 23:03:44 +02:00
tox_load(m, buf, len);
2014-03-05 14:01:12 +01:00
load_friendlist(m);
2013-08-15 12:11:48 +02:00
free(buf);
fclose(fd);
} else {
int st;
2013-08-16 19:11:09 +02:00
2013-08-15 12:11:48 +02:00
if ((st = store_data(m, path)) != 0) {
endwin();
2013-09-12 07:33:41 +02:00
fprintf(stderr, "Store messenger failed with return code: %d\n", st);
exit(EXIT_FAILURE);
2013-08-15 12:11:48 +02:00
}
}
}
2014-02-22 23:58:36 +01:00
void exit_toxic(Tox *m)
2013-11-29 04:28:40 +01:00
{
2014-02-22 23:58:36 +01:00
store_data(m, DATA_FILE);
close_all_file_senders();
2014-02-26 11:23:11 +01:00
kill_all_windows();
log_disable(prompt->chatwin->log);
line_info_cleanup(prompt->chatwin->hst);
2013-09-12 00:07:26 +02:00
free(DATA_FILE);
free(prompt->stb);
free(prompt->chatwin->log);
free(prompt->chatwin->hst);
free(prompt->chatwin);
2014-04-07 10:42:10 +02:00
free(user_settings);
tox_kill(m);
2014-03-08 16:36:42 +01:00
#ifdef _SUPPORT_AUDIO
2014-03-14 23:08:08 +01:00
terminate_audio();
2014-03-08 16:36:42 +01:00
#endif /* _SUPPORT_AUDIO */
endwin();
exit(EXIT_SUCCESS);
}
2014-02-22 23:58:36 +01:00
static void do_toxic(Tox *m, ToxWindow *prompt)
{
2014-03-13 11:06:53 +01:00
pthread_mutex_lock(&Winthread.lock);
2014-02-22 23:58:36 +01:00
do_connection(m, prompt);
do_file_senders(m);
/* main tox-core loop */
tox_do(m);
2014-03-13 11:06:53 +01:00
pthread_mutex_unlock(&Winthread.lock);
}
void *thread_winref(void *data)
{
Tox *m = (Tox *) data;
while (true)
draw_active_window(m);
2014-02-22 23:58:36 +01:00
}
2013-08-07 00:27:51 +02:00
int main(int argc, char *argv[])
{
2013-08-16 19:11:09 +02:00
char *user_config_dir = get_user_config_dir();
int config_err = 0;
f_loadfromfile = 1;
int f_flag = 0;
int i = 0;
2013-12-02 15:02:34 +01:00
int f_use_ipv4 = 0;
2013-08-16 19:11:09 +02:00
2014-02-25 08:28:24 +01:00
/* Make sure all written files are read/writeable only by the current user. */
2014-02-22 23:58:36 +01:00
umask(S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
2013-08-16 19:11:09 +02:00
for (i = 0; i < argc; ++i) {
if (argv[i] == NULL)
break;
else if (argv[i][0] == '-') {
if (argv[i][1] == 'f') {
if (argv[i + 1] != NULL)
DATA_FILE = strdup(argv[i + 1]);
else
f_flag = -1;
} else if (argv[i][1] == 'n') {
f_loadfromfile = 0;
2013-12-02 15:02:34 +01:00
} else if (argv[i][1] == '4') {
f_use_ipv4 = 1;
2013-08-16 19:11:09 +02:00
}
}
}
config_err = create_user_config_dir(user_config_dir);
2013-08-16 19:11:09 +02:00
if (DATA_FILE == NULL ) {
if (config_err) {
DATA_FILE = strdup("data");
} else {
DATA_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("data") + 1);
if (DATA_FILE != NULL) {
2013-09-09 06:56:47 +02:00
strcpy(DATA_FILE, user_config_dir);
strcat(DATA_FILE, CONFIGDIR);
strcat(DATA_FILE, "data");
2013-09-12 00:07:26 +02:00
} else {
endwin();
2013-09-12 07:33:41 +02:00
fprintf(stderr, "malloc() failed. Aborting...\n");
2013-09-12 00:07:26 +02:00
exit(EXIT_FAILURE);
2013-09-09 06:56:47 +02:00
}
2013-08-16 19:11:09 +02:00
}
}
2013-08-16 19:11:09 +02:00
free(user_config_dir);
2014-04-07 10:42:10 +02:00
/* init user_settings struct and load settings from conf file */
user_settings = malloc(sizeof(struct user_settings));
if (user_settings == NULL) {
endwin();
fprintf(stderr, "malloc() failed. Aborting...\n");
exit(EXIT_FAILURE);
}
2014-04-08 23:20:21 +02:00
memset(user_settings, 0, sizeof(struct user_settings));
2014-04-07 10:42:10 +02:00
int settings_err = settings_load(user_settings, NULL);
init_term();
Tox *m = init_tox(f_use_ipv4);
if (m == NULL) {
endwin();
fprintf(stderr, "Failed to initialize network. Aborting...\n");
exit(EXIT_FAILURE);
}
prompt = init_windows(m);
2014-03-13 11:06:53 +01:00
/* create new thread for ncurses stuff */
2014-03-14 04:30:44 +01:00
if (pthread_mutex_init(&Winthread.lock, NULL) != 0) {
2014-03-13 11:06:53 +01:00
endwin();
fprintf(stderr, "Mutex init failed. Aborting...\n");
exit(EXIT_FAILURE);
}
if (pthread_create(&Winthread.tid, NULL, thread_winref, (void *) m) != 0) {
endwin();
fprintf(stderr, "Thread creation failed. Aborting...\n");
exit(EXIT_FAILURE);
}
2013-08-16 19:11:09 +02:00
uint8_t *msg;
2014-03-14 04:30:44 +01:00
#ifdef _SUPPORT_AUDIO
2014-03-14 04:30:44 +01:00
2014-03-08 16:36:42 +01:00
av = init_audio(prompt, m);
2014-03-14 04:30:44 +01:00
2014-03-07 03:14:04 +01:00
if ( errors() == NoError )
2014-04-08 23:20:21 +02:00
msg = "Audio initiated with no problems.";
2014-03-07 03:14:04 +01:00
else /* Get error code and stuff */
2014-04-08 23:20:21 +02:00
msg = "Error initiating audio!";
2014-03-14 04:30:44 +01:00
line_info_add(prompt, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2014-03-14 04:30:44 +01:00
2014-04-08 23:20:21 +02:00
device_set(prompt, input, user_settings->audio_in_dev);
device_set(prompt, output, user_settings->audio_out_dev);
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
2014-03-14 04:30:44 +01:00
2013-08-16 19:11:09 +02:00
if (f_loadfromfile)
load_data(m, DATA_FILE);
if (f_flag == -1) {
msg = "You passed '-f' without giving an argument. Defaulting to 'data' for a keyfile...";
line_info_add(prompt, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-08-03 21:12:02 +02:00
}
if (config_err) {
msg = "Unable to determine configuration directory. Defaulting to 'data' for a keyfile...";
line_info_add(prompt, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-08-16 19:11:09 +02:00
}
2014-04-07 10:42:10 +02:00
if (settings_err == -1) {
msg = "Failed to load user settings";
line_info_add(prompt, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
}
2014-04-07 10:42:10 +02:00
2014-03-14 04:30:44 +01:00
sort_friendlist_index();
prompt_init_statusbar(prompt, m);
2014-03-13 11:06:53 +01:00
while (true) {
2014-03-14 04:56:46 +01:00
update_unix_time();
2014-02-21 06:45:29 +01:00
do_toxic(m, prompt);
2014-03-13 11:06:53 +01:00
usleep(10000);
}
2014-03-08 16:36:42 +01:00
2013-08-16 19:11:09 +02:00
return 0;
}