Print this page
fromto and inbound worker

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libipsecutil/common/ipsec_util.h
          +++ new/usr/src/lib/libipsecutil/common/ipsec_util.h
↓ open down ↓ 447 lines elided ↑ open up ↑
 448  448          dgettext(TEXT_DOMAIN, x), y)
 449  449  #define EXIT_DEGRADE(x) \
 450  450          ipsecutil_exit(SERVICE_DEGRADE, my_fmri, debugfile, \
 451  451          dgettext(TEXT_DOMAIN, x))
 452  452  #define EXIT_BADPERM(x) \
 453  453          ipsecutil_exit(SERVICE_BADPERM, my_fmri, debugfile, \
 454  454          dgettext(TEXT_DOMAIN, x))
 455  455  #define EXIT_BADPERM2(x, y) \
 456  456          ipsecutil_exit(SERVICE_BADPERM, my_fmri, debugfile, \
 457  457          dgettext(TEXT_DOMAIN, x), y)
      458 +#define EXIT_BADPERM3(x, y, z) \
      459 +        ipsecutil_exit(SERVICE_BADPERM, my_fmri, debugfile, \
      460 +        dgettext(TEXT_DOMAIN, x), y, z)
 458  461  #define EXIT_FATAL(x) \
 459  462          ipsecutil_exit(SERVICE_FATAL, my_fmri, debugfile, \
 460  463          dgettext(TEXT_DOMAIN, x))
 461  464  #define EXIT_FATAL2(x, y) \
 462  465          ipsecutil_exit(SERVICE_FATAL, my_fmri, debugfile, \
 463  466          dgettext(TEXT_DOMAIN, x), y)
 464  467  #define EXIT_FATAL3(x, y, z) \
 465  468          ipsecutil_exit(SERVICE_FATAL, my_fmri, debugfile, \
 466  469          dgettext(TEXT_DOMAIN, x), y, z)
      470 +#define EXIT_FATAL4(x, y, z, z2) \
      471 +        ipsecutil_exit(SERVICE_FATAL, my_fmri, debugfile, \
      472 +        dgettext(TEXT_DOMAIN, x), y, z, z2)
 467  473  #define EXIT_RESTART(x) \
 468  474          ipsecutil_exit(SERVICE_RESTART, my_fmri, debugfile, \
 469  475          dgettext(TEXT_DOMAIN, x))
 470  476  
 471  477  #ifdef __cplusplus
 472  478  }
 473  479  #endif
 474  480  
 475  481  #endif  /* _IPSEC_UTIL_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX