Navigation



Ignore:
Timestamp:
Nov 25, 2009, 7:07:09 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added a large part of connection establishment logic, to test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfreeDiameter.h

    r34 r43  
    718718 }
    719719                 
    720  
    721720*/
     721               
     722/* Special function: */
     723uint32_t * fd_dict_get_vendorid_list(struct dictionary * dict);
    722724         
    723725/*
     
    13291331               
    13301332/* Define some hard-coded values */
     1333/* Application */
     1334#define AI_RELAY                        0xffffffff
     1335
    13311336/* Commands Codes */
    13321337#define CC_CAPABILITIES_EXCHANGE        257
     
    13691374#define AC_ORIGIN_REALM                 296
    13701375#define AC_INBAND_SECURITY_ID           299
     1376#define ACV_ISI_NO_INBAND_SECURITY              0
     1377#define ACV_ISI_TLS                             1
    13711378
    13721379/* Error codes */
     
    24262433 *
    24272434 * PARAMETERS:
    2428  *  old         : Location of a FIFO that is to be emptied and deleted.
     2435 *  old         : Location of a FIFO that is to be emptied.
    24292436 *  new         : A FIFO that will receive the old data.
    24302437 *  loc_update  : if non NULL, a place to store the pointer to new FIFO atomically with the move.
    24312438 *
    24322439 * DESCRIPTION:
    2433  *  Delete a queue and move its content to another one atomically.
     2440 *  Empties a queue and move its content to another one atomically.
    24342441 *
    24352442 * RETURN VALUE:
     
    24372444 *  EINVAL      : A parameter is invalid.
    24382445 */
    2439 int fd_fifo_move ( struct fifo ** old, struct fifo * new, struct fifo ** loc_update );
     2446int fd_fifo_move ( struct fifo * old, struct fifo * new, struct fifo ** loc_update );
    24402447
    24412448/*
Note: See TracChangeset for help on using the changeset viewer.