Commit 11928d2a 11928d2a218b18fa2e702aef1f6ddb2faf209d2d by Sam Roberts

Comment on schemes, and removed comment on encoding.

1 parent a0ff80d8
...@@ -36,6 +36,12 @@ extern "C" { ...@@ -36,6 +36,12 @@ extern "C" {
36 # endif 36 # endif
37 #endif /*__P */ 37 #endif /*__P */
38 38
39 /* The pop and imap defines are all wrong now, since they seem intertwined
40 with the old url parsing code. Also, "pop://" is not the POP scheme,
41 at least not as a scheme is described in the RFCs.
42
43 Perhaps they can be changed?
44 */
39 #define MU_POP_PORT 110 45 #define MU_POP_PORT 110
40 #define MU_POP_SCHEME "pop://" 46 #define MU_POP_SCHEME "pop://"
41 #define MU_POP_SCHEME_LEN 6 47 #define MU_POP_SCHEME_LEN 6
......
...@@ -39,10 +39,10 @@ extern "C" { ...@@ -39,10 +39,10 @@ extern "C" {
39 struct _url 39 struct _url
40 { 40 {
41 /* Data */ 41 /* Data */
42 char *name; 42 char *name;
43 char *scheme; 43 char *scheme;
44 char *user; 44 char *user;
45 char *passwd; /* encoded ?? */ 45 char *passwd;
46 char *auth; 46 char *auth;
47 char *host; 47 char *host;
48 long port; 48 long port;
......