bin/dbupdate/process.h

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following functions.

   1 /***************************************
   2   $Revision: 1.1 $
   3 
   4   process.h 
   5 
   6   Status: NOT REVIEWED, TESTED
   7 
   8   Author(s):       Engin Gunduz
   9 
  10   ******************/ /******************
  11   Modification History:
  12         engin (03/03/2001) Created.
  13   ******************/ /******************
  14   Copyright (c) 2001                              RIPE NCC
  15 
  16   All Rights Reserved
  17 
  18   Permission to use, copy, modify, and distribute this software and its
  19   documentation for any purpose and without fee is hereby granted,
  20   provided that the above copyright notice appear in all copies and that
  21   both that copyright notice and this permission notice appear in
  22   supporting documentation, and that the name of the author not be
  23   used in advertising or publicity pertaining to distribution of the
  24   software without specific, written prior permission.
  25 
  26   THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  27   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO EVENT SHALL
  28   AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
  29   DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
  30   AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  31   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  32  ***************************************/
  33 
  34 #ifndef PROCESS_H
  35 #define PROCESS_H
  36 
  37 #include "sk.h" 
  38 #include "aa.h"
  39 
  40 #ifdef __cplusplus
  41 extern "C" {
  42 #endif
  43 
  44 void process_networkupdate(credentials_struct credentials,  
  45                            GHashTable * AUTO_NIC_hdl_hash, 
  46                            char * ack_file_name, 
  47                            GHashTable * ntfy_hash,
  48                            GHashTable * forw_hash,
  49                            GHashTable * cross_hash);
  50 
  51 int process_object(char * incoming, credentials_struct credentials, 
  52                    GHashTable * NIC_hdl_hash, char * ack_file_name,
  53                    GHashTable * ntfy_hash, GHashTable * forw_hash, GHashTable * cross_hash);
  54 
  55 #ifdef __cplusplus
  56 }
  57 #endif
  58 
  59 
  60 #endif

/* [<][>][^][v][top][bottom][index][help] */