Added skeleton source for signalling interface and receiver.

git-svn-id: http://yate.null.ro/svn/yate/trunk@761 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2006-04-27 12:28:30 +00:00
parent 6321d3df7f
commit 2f9e1d26ba
2 changed files with 30 additions and 1 deletions

View File

@ -14,7 +14,7 @@ INCFILES := @top_srcdir@/yateclass.h @srcdir@/yatess7.h
PROGS=
LIBS = libyatess7.a
OBJS = engine.o sigcall.o sigtran.o \
layer2.o layer3.o \
interface.o layer2.o layer3.o \
router.o sccp.o tcap.o \
q921.o q931.o

View File

@ -0,0 +1,29 @@
/**
* interface.cpp
* Yet Another SS7 Stack
* This file is part of the YATE Project http://YATE.null.ro
*
* Yet Another Telephony Engine - a fully featured software PBX and IVR
* Copyright (C) 2006 Null Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "yatess7.h"
using namespace TelEngine;
/* vi: set ts=8 sw=4 sts=4 noet: */