attributes.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* $XConsortium: attributes.c /main/3 1995/10/27 10:37:52 rswiston $ */
  24. /*
  25. * (c) Copyright 1993, 1994 Hewlett-Packard Company
  26. * (c) Copyright 1993, 1994 International Business Machines Corp.
  27. * (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  28. * (c) Copyright 1993, 1994 Novell, Inc.
  29. */
  30. /*
  31. * attributes.c - retrieve calendar attributes
  32. */
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <time.h>
  36. #include <string.h>
  37. #include <sys/param.h>
  38. #include <sys/types.h>
  39. #include <csa/csa.h>
  40. void main(int argc, char **argv)
  41. {
  42. CSA_session_handle cal;
  43. CSA_calendar_user user;
  44. CSA_uint32 num_names;
  45. CSA_attribute_reference *names;
  46. CSA_return_code stat;
  47. int i;
  48. if (argc < 2) {
  49. printf("usage: %s user@host\n", argv[0]);
  50. return;
  51. }
  52. memset((void *)&user, NULL, sizeof(CSA_calendar_user));
  53. user.calendar_address = argv[1];
  54. if ((stat = csa_logon(NULL, &user, NULL, NULL, NULL, &cal, NULL))
  55. != CSA_SUCCESS)
  56. {
  57. printf("Logon to %s failed, stat = %d\n", argv[1],
  58. stat);
  59. return;
  60. }
  61. if ((stat = csa_list_calendar_attributes(cal, &num_names, &names,
  62. NULL)) == CSA_SUCCESS) {
  63. printf("List calendar attributes:\n");
  64. for (i = 0; i < num_names; i++)
  65. printf("%s\n", names[i]);
  66. csa_free(names);
  67. } else
  68. printf("csa_list_calendar_attributes failed, stat = %d\n",
  69. stat);
  70. (void)csa_logoff(cal, NULL);
  71. }