aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2014-07-23 16:19:49 +0000
committerGabor X Toth <*@tg-x.net>2014-07-23 16:19:49 +0000
commit3cf8ba0b60f8495892fa76635e9c23555d0a304c (patch)
tree5f27648bdb3cf3409628e4e5edc26f811cbd03a5 /contrib
parent252b5599987b7ba03b879a8c2d1c455ad4c9834a (diff)
downloadgnunet-3cf8ba0b60f8495892fa76635e9c23555d0a304c.tar.gz
gnunet-3cf8ba0b60f8495892fa76635e9c23555d0a304c.zip
social: implement enter/leave/messaging; psyc: improvements and fixes
- social: implement enter/leave, send/receive messages, slicer - psyc, social: add struct GNUNET_PSYC_Message for single-fragment join messages - psyc: add message callback in addition to message part callback - client_manager, social, psyc, multicast: add disconnect callback
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/gnunet-logread2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gnunet-logread b/contrib/gnunet-logread
index 773a5ff93..173ed2387 100755
--- a/contrib/gnunet-logread
+++ b/contrib/gnunet-logread
@@ -47,7 +47,7 @@ if (exists $opts{n})
47 $ipc = $opts{i} || '/tmp/gnunet-logread-ipc.sock'; 47 $ipc = $opts{i} || '/tmp/gnunet-logread-ipc.sock';
48 $msg_level = exists $levels{$opts{L}} ? $levels{$opts{L}} : 0; 48 $msg_level = exists $levels{$opts{L}} ? $levels{$opts{L}} : 0;
49 $msg_regex = $opts{m}; 49 $msg_regex = $opts{m};
50 print STDERR "RE: /$msg_regex/\n"; 50 print STDERR "RE: /$msg_regex/\n" if defined $msg_regex;
51 open IPC, '>', $ipc or die "$ipc: $!\n"; 51 open IPC, '>', $ipc or die "$ipc: $!\n";
52} 52}
53 53