comparison: src/protocols/simple/simple.h
src/protocols/simple/simple.h
- changeset 13085
- c80913901342
- parent 13058
- 2bf79aa07199
- child 13178
- 824d50326672
equal
deleted
inserted
replaced
| 51 }; |
51 }; |
| 52 |
52 |
| 53 struct sip_auth { |
53 struct sip_auth { |
| 54 int type; /* 1 = Digest / 2 = NTLM */ |
54 int type; /* 1 = Digest / 2 = NTLM */ |
| 55 gchar *nonce; |
55 gchar *nonce; |
| |
56 gchar *opaque; |
| 56 gchar *realm; |
57 gchar *realm; |
| 57 gchar *target; |
58 gchar *target; |
| |
59 guint32 flags; |
| 58 int nc; |
60 int nc; |
| 59 gchar *digest_session_key; |
61 gchar *digest_session_key; |
| 60 int retries; |
62 int retries; |
| 61 }; |
63 }; |
| 62 |
64 |