Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong settings initialization #2

Closed
GoogleCodeExporter opened this issue Mar 14, 2016 · 3 comments
Closed

wrong settings initialization #2

GoogleCodeExporter opened this issue Mar 14, 2016 · 3 comments

Comments

@GoogleCodeExporter
Copy link

1. open RTEP.php
2. go to line 11

if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'listen'])) 
{Daemon::$settings[$k] = 'tcp://0.0.0.0';}
  if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'listenport'])) 
{Daemon::$settings[$k] = 844;}
  if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'enable'])) 
{Daemon::$settings[$k] = 0;}

should be

if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'listen'])) 
{Daemon::$settings[$k = 'mod'.$this->modname.'listen'] = 'tcp://0.0.0.0';}
  if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'listenport'])) 
{Daemon::$settings[$k = 'mod'.$this->modname.'listen'] = 844;}
  if (!isset(Daemon::$settings[$k = 'mod'.$this->modname.'enable'])) 
{Daemon::$settings[$k = 'mod'.$this->modname.'listen'] = 0;}


Original issue reported on code.google.com by serg....@gmail.com on 16 Oct 2009 at 10:27

@GoogleCodeExporter
Copy link
Author

Why?

Original comment by kak.serp...@gmail.com on 16 Oct 2009 at 9:30

@GoogleCodeExporter
Copy link
Author

oh sorry. you're right. it's ok.

Original comment by serg....@gmail.com on 16 Oct 2009 at 10:20

@GoogleCodeExporter
Copy link
Author

Original comment by kak.serp...@gmail.com on 17 Oct 2009 at 11:08

  • Changed state: WontFix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant