From 04128951db339ddfd7905adf92990f00a3a01447 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 23 May 2008 15:16:24 +0000 Subject: yay, all the tools compile now git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@4339 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- patlooptest.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'patlooptest.c') diff --git a/patlooptest.c b/patlooptest.c index 738da63..c53cf96 100644 --- a/patlooptest.c +++ b/patlooptest.c @@ -8,11 +8,7 @@ #include #include -#ifdef STANDALONE_ZAPATA -#include "kernel/zaptel.h" -#else -#include -#endif +#include #define BLOCK_SIZE 2039 @@ -30,7 +26,7 @@ int main(int argc, char *argv[]) int fd; int res, x; int i; - ZT_PARAMS tp; + DAHDI_PARAMS tp; int bs = BLOCK_SIZE; int skipcount = 10; unsigned char c=0,c1=0; @@ -50,18 +46,18 @@ int main(int argc, char *argv[]) fprintf(stderr, "Unable to open %s: %s\n", argv[1], strerror(errno)); exit(1); } - if (ioctl(fd, ZT_SET_BLOCKSIZE, &bs)) { + if (ioctl(fd, DAHDI_SET_BLOCKSIZE, &bs)) { fprintf(stderr, "Unable to set block size to %d: %s\n", bs, strerror(errno)); exit(1); } - if (ioctl(fd, ZT_GET_PARAMS, &tp)) { + if (ioctl(fd, DAHDI_GET_PARAMS, &tp)) { fprintf(stderr, "Unable to get channel parameters\n"); exit(1); } - ioctl(fd, ZT_GETEVENT); + ioctl(fd, DAHDI_GETEVENT); - i = ZT_FLUSH_ALL; - if (ioctl(fd,ZT_FLUSH,&i) == -1) + i = DAHDI_FLUSH_ALL; + if (ioctl(fd,DAHDI_FLUSH,&i) == -1) { perror("tor_flush"); exit(255); @@ -81,7 +77,7 @@ int main(int argc, char *argv[]) if (res != bs) { printf("Res is %d: %s\n", res, strerror(errno)); - ioctl(fd, ZT_GETEVENT, &x); + ioctl(fd, DAHDI_GETEVENT, &x); printf("Event: %d\n", x); exit(1); } -- cgit v1.2.3