Commit 11928d2a 11928d2a218b18fa2e702aef1f6ddb2faf209d2d by Sam Roberts

Comment on schemes, and removed comment on encoding.

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