tmsrp_header_WWW-Authenticate.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2009 Mamadou Diop.
  3. *
  4. * Contact: Mamadou Diop <diopmamadou [at) doubango (DOT) org>
  5. *
  6. * This file is part of Open Source Doubango Framework.
  7. *
  8. * DOUBANGO is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * DOUBANGO is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with DOUBANGO.
  20. *
  21. */
  22. /**@file tmsrp_header_WWW_Authenticate.h
  23. * @brief MSRP header 'WWW-Authenticate'.
  24. *
  25. * @author Mamadou Diop <diopmamadou [at) doubango (DOT) org>
  26. *
  27. */
  28. #ifndef _TMSRP_HEADER_WWW_Authenticate_H_
  29. #define _TMSRP_HEADER_WWW_Authenticate_H_
  30. #include "tinymsrp_config.h"
  31. #include "tinymsrp/headers/tmsrp_header.h"
  32. TMSRP_BEGIN_DECLS
  33. ////////////////////////////////////////////////////////////////////////////////////////////////////
  34. /// @struct
  35. ///
  36. /// @brief MSRP header 'WWW-Authenticate'.
  37. ///
  38. /// @par ABNF = WWW-Authenticate = "WWW-Authenticate" HCOLON challenge
  39. /// challenge = ("Digest" LWS digest-cln *(COMMA digest-cln)) / other-challenge
  40. /// other-challenge = auth-scheme / auth-param *(COMMA auth-param)
  41. /// digest-cln = realm / domain / nonce / opaque / stale / algorithm / qop-options / auth-param
  42. /// realm = "realm" EQUAL realm-value
  43. /// realm-value = quoted-string
  44. /// domain = "domain" EQUAL LDQUOT URI *( 1*SP URI ) RDQUOT
  45. /// URI = absoluteURI / abs-path
  46. /// opaque = "opaque" EQUAL quoted-string
  47. /// stale = "stale" EQUAL ( "true" / "false" )
  48. /// qop-options = "qop" EQUAL LDQUOT qop-value *("," qop-value) RDQUOT
  49. /// qop-value = "auth" / "auth-int" / token
  50. ///
  51. ////////////////////////////////////////////////////////////////////////////////////////////////////
  52. typedef struct tmsrp_header_WWW_Authenticate_s {
  53. TMSRP_DECLARE_HEADER;
  54. char* scheme;
  55. char* realm;
  56. char* domain;
  57. char* nonce;
  58. char* opaque;
  59. unsigned stale:1;
  60. char* algorithm;
  61. char* qop;
  62. tsk_params_L_t* params;
  63. }
  64. tmsrp_header_WWW_Authenticate_t;
  65. tmsrp_header_WWW_Authenticate_t *tmsrp_header_WWW_Authenticate_parse(const char *data, tsk_size_t size);
  66. TINYMSRP_GEXTERN const tsk_object_def_t *tmsrp_header_WWW_Authenticate_def_t;
  67. TMSRP_END_DECLS
  68. #endif /* _TMSRP_HEADER_WWW_Authenticate_H_ */