File: dest.h

package info (click to toggle)
mbuffer 20100526-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 524 kB
  • ctags: 187
  • sloc: sh: 2,768; ansic: 2,511; makefile: 172
file content (13 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DEST_H
#define DEST_H

#include <pthread.h>

typedef struct destination {
	struct destination *next;
	const char *arg, *name, *port, *result;
	int fd;
	pthread_t thread;
} dest_t;

#endif