Search found 1 match
- 14 Mar 2013, 06:42
- Forum: Suggestions (csf)
- Topic: Integrated User Interface not working
- Replies: 6
- Views: 10702
Re: Integrated User Interface not working
I had this error after disabling IPv6 in the kernel. To fix it, I added the line 'Domain => AF_INET,' to lfd <dot> pl, line 7346 sub ui { ... my $server = IO::Socket::SSL->new( Domain => AF_INET, LocalPort => $config{UI_PORT}, This forces the SSL listener to use IPv4. Of course a real bug-fix would ...