Browse Source

patch for nntpchan stream

pull/40/head
Jeff Becker 8 years ago
parent
commit
1c3e6e590a
No known key found for this signature in database GPG Key ID: AB950234D6EA286B
  1. 5
      inc/nntpchan/nntpchan.php

5
inc/nntpchan/nntpchan.php

@ -64,7 +64,9 @@ function gen_nntp($headers, $files) {
}
function nntp_publish($msg, $id) {
$s = fsockopen("tcp://localhost:1119");
global $config;
$server = $config["nntpchan"]["server"];
$s = fsockopen("tcp://$server");
fgets($s);
fputs($s, "MODE STREAM\r\n");
fgets($s);
@ -72,6 +74,7 @@ function nntp_publish($msg, $id) {
fputs($s, $msg);
fputs($s, "\r\n.\r\n");
fgets($s);
fputs($s, "QUIT\r\n");
fclose($s);
}

Loading…
Cancel
Save