isdn4k-utils/isdnlog/isdnlog/asn1_diversion.h

55 lines
2.7 KiB
C

/* $Id: asn1_diversion.h,v 1.1 2000/01/20 07:30:09 kai Exp $
*
* ISDN accounting for isdn4linux. (ASN.1 parser)
*
* Copyright 1995 .. 2000 by Andreas Kool (akool@isdn4linux.de)
*
* ASN.1 parser written by Kai Germaschewski <kai@thphy.uni-duesseldorf.de>
*
* 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, 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.
*
* $Log: asn1_diversion.h,v $
* Revision 1.1 2000/01/20 07:30:09 kai
* rewrote the ASN.1 parsing stuff. No known problems so far, apart from the
* following:
*
* I don't use buildnumber() anymore to translate the numbers to aliases, because
* it apparently did never work quite right. If someone knows how to handle
* buildnumber(), we can go ahead and fix this.
*
*
*
*/
// ======================================================================
// Diversion Supplementary Services ETS 300 207-1 Table 3
int ParseARGActivationDiversion(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGActivationStatusNotificationDiv(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGDeactivationDiversion(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGDeactivationStatusNotificationDiv(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGInterrogationDiversion(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseRESInterrogationDiversion(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGInterrogateServedUserNumbers(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseRESInterrogateServedUserNumbers(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseARGDiversionInformation(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseIntResult(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseIntResultList(struct Aoc *chanp, u_char *p, u_char *end, int dummy);
int ParseServedUserNr(struct Aoc *chanp, u_char *p, u_char *end, char *str);
int ParseProcedure(struct Aoc *chanp, u_char *p, u_char *end, char *str);
int ParseServedUserNumberList(struct Aoc *chanp, u_char *p, u_char *end, char *str);
int ParseDiversionReason(struct Aoc *chanp, u_char *p, u_char *end, char *str);