File: tcpto_clean.c

package info (click to toggle)
qmail 1.03-49.2
  • links: PTS
  • area: non-free
  • in suites: squeeze
  • size: 4,380 kB
  • ctags: 2,091
  • sloc: ansic: 16,302; makefile: 2,447; sh: 771; perl: 449
file content (20 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "tcpto.h"
#include "open.h"
#include "substdio.h"
#include "readwrite.h"

char tcpto_cleanbuf[1024];

void tcpto_clean() /* running from queue/mess */
{
 int fd;
 int i;
 substdio ss;

 fd = open_write("../lock/tcpto");
 if (fd == -1) return;
 substdio_fdbuf(&ss,write,fd,tcpto_cleanbuf,sizeof(tcpto_cleanbuf));
 for (i = 0;i < sizeof(tcpto_cleanbuf);++i) substdio_put(&ss,"",1);
 substdio_flush(&ss); /* if it fails, bummer */
 close(fd);
}