﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	mlocked
11037	OSD message is not working	warpme@…	Raymond Wagner	"After 0.25.2->0.26 upgrade I can't working OSD message. I'm using perl to send messages to OSD. 

{{{
sub send_osd_notify_to_host {
  my ($text,$timeout,$ip) = @_;
  print (""Notify via OSD at IP=$ip with text: \""$text\""\n"") if ($debug);
  my $msg = ""<mythmessage version=\""1\"">
            <text>$text</text>
            <timeout>$timeout</timeout>
        </mythmessage>"";
  my $mythnotify_fh = IO::Socket::INET->new(PeerAddr=>$ip,Proto=>'udp',PeerPort=>6948);
  if ($mythnotify_fh) {
    print $mythnotify_fh $msg;
    $mythnotify_fh->close;
    print (""Notify via OSD Done\n"") if ($debug);
  }
}
}}}

In 0.26 I was able to get it working once, but only once and honestly speaking I don't remember what conditions make it working. I was trying to test this feature by using mythutil utility, unfortunately I get constantly help screen for when calling ""mythutil --message ""test"" "".     "	Bug Report - General	closed	minor	0.26	MythTV - User Interface Library	Master Head	medium	fixed			0
