Browse Source

- make qop parser available to the outside world

Jan Janak 19 years ago
parent
commit
62b58347e7
2 changed files with 6 additions and 1 deletions
  1. 1 1
      parser/digest/digest_parser.c
  2. 5 0
      parser/digest/digest_parser.h

+ 1 - 1
parser/digest/digest_parser.c

@@ -220,7 +220,7 @@ static inline int parse_digest_param(str* _s, dig_cred_t* _c)
 /*
  * Parse qop parameter body
  */
-static inline void parse_qop(struct qp* _q)
+void parse_qop(struct qp* _q)
 {
 	str s;
 

+ 5 - 0
parser/digest/digest_parser.h

@@ -129,4 +129,9 @@ void init_dig_cred(dig_cred_t* _c);
 int parse_digest_cred(str* _s, dig_cred_t* _c);
 
 
+/*
+ * Parse qop string
+ */
+void parse_qop(struct qp* _q);
+
 #endif /* DIGEST_PARSER_H */