File: url.h

package info (click to toggle)
mutt 1.5.13-1.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 14,124 kB
  • ctags: 5,052
  • sloc: ansic: 75,353; sh: 3,670; perl: 971; makefile: 673; yacc: 318; awk: 17
file content (35 lines) | stat: -rw-r--r-- 628 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _URL_H
# define _URL_H

typedef enum url_scheme
{
  U_FILE,
  U_POP,
  U_POPS,
  U_IMAP,
  U_IMAPS,
  U_MAILTO,
  U_UNKNOWN
}
url_scheme_t;

#define U_DECODE_PASSWD (1)

typedef struct ciss_url
{
  url_scheme_t scheme;
  char *user;
  char *pass;
  char *host;
  unsigned short port;
  char *path;
} 
ciss_url_t;

url_scheme_t url_check_scheme (const char *s);
int url_parse_file (char *d, const char *src, size_t dl);
int url_parse_ciss (ciss_url_t *ciss, char *src);
int url_ciss_tostring (ciss_url_t* ciss, char* dest, size_t len, int flags);
int url_parse_mailto (ENVELOPE *e, char **body, const char *src);

#endif