From ade4617d53fe199fdcc65dd6a61d637342acae60 Mon Sep 17 00:00:00 2001 From: angt Date: Fri, 8 Apr 2016 13:00:52 +0000 Subject: [PATCH] Update mud --- mud | 2 +- src/main.c | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/mud b/mud index ecec237..a05381a 160000 --- a/mud +++ b/mud @@ -1 +1 @@ -Subproject commit ecec237a56b928935a554c86bdcafdbde0c97a8f +Subproject commit a05381a329f8bfa117a683edd59163b33e1e4aa4 diff --git a/src/main.c b/src/main.c index 34df70c..133a304 100644 --- a/src/main.c +++ b/src/main.c @@ -244,7 +244,6 @@ int main (int argc, char **argv) long down_timeout = 0; long send_timeout = 0; - long pong_timeout = 0; long time_tolerance = 0; struct option opts[] = { @@ -259,7 +258,6 @@ int main (int argc, char **argv) { "timeout", >.timeout, option_long }, { "down-timeout", &down_timeout, option_long }, { "send-timeout", &send_timeout, option_long }, - { "pong-timeout", &pong_timeout, option_long }, { "time-tolerance", &time_tolerance, option_long }, { "version", NULL, option_option }, { NULL }, @@ -320,9 +318,6 @@ int main (int argc, char **argv) if (send_timeout > 0) mud_set_send_timeout_msec(mud, send_timeout); - if (pong_timeout > 0) - mud_set_pong_timeout_msec(mud, pong_timeout); - if (time_tolerance > 0) mud_set_time_tolerance_sec(mud, time_tolerance);