X7ROOT File Manager
Current Path:
/opt/alt/libc-client11/include/c-client
opt
/
alt
/
libc-client11
/
include
/
c-client
/
ðŸ“
..
📄
c-client.h
(1.65 KB)
📄
dummy.h
(1.49 KB)
📄
env.h
(1.47 KB)
📄
env_unix.h
(2.86 KB)
📄
fdstring.h
(1.05 KB)
📄
flockcyg.h
(1.34 KB)
📄
flocksim.h
(4.29 KB)
📄
flstring.h
(799 B)
📄
fs.h
(905 B)
📄
ftl.h
(825 B)
📄
imap4r1.h
(8.01 KB)
📄
linkage.c
(1.2 KB)
📄
linkage.h
(541 B)
📄
mail.h
(66.8 KB)
📄
misc.h
(3.27 KB)
📄
netmsg.h
(987 B)
📄
newsrc.h
(1.45 KB)
📄
nl.h
(939 B)
📄
nntp.h
(1.58 KB)
📄
os_a32.h
(1.2 KB)
📄
os_a41.h
(1.2 KB)
📄
os_a52.h
(1.27 KB)
📄
os_aix.h
(1.1 KB)
📄
os_aos.h
(1.26 KB)
📄
os_art.h
(2.01 KB)
📄
os_asv.h
(1.91 KB)
📄
os_aux.h
(1.18 KB)
📄
os_bsd.h
(1.33 KB)
📄
os_bsf.h
(1.05 KB)
📄
os_bsi.h
(1.03 KB)
📄
os_cvx.h
(1.09 KB)
📄
os_cyg.h
(1.6 KB)
📄
os_d-g.h
(1.35 KB)
📄
os_do4.h
(1.23 KB)
📄
os_drs.h
(1.42 KB)
📄
os_dyn.h
(1.5 KB)
📄
os_hpp.h
(1.36 KB)
📄
os_isc.h
(1.68 KB)
📄
os_lnx.h
(1.45 KB)
📄
os_lyn.h
(1.03 KB)
📄
os_mct.h
(1.05 KB)
📄
os_mnt.h
(1.18 KB)
📄
os_nto.h
(1.64 KB)
📄
os_nxt.h
(1.18 KB)
📄
os_os4.h
(1.17 KB)
📄
os_osf.h
(1.17 KB)
📄
os_osx.h
(1.26 KB)
📄
os_ptx.h
(1.7 KB)
📄
os_pyr.h
(1.42 KB)
📄
os_qnx.h
(1.42 KB)
📄
os_s40.h
(957 B)
📄
os_sc5.h
(1.72 KB)
📄
os_sco.h
(1.76 KB)
📄
os_sgi.h
(1.36 KB)
📄
os_shp.h
(1.36 KB)
📄
os_slx.h
(1.45 KB)
📄
os_soln.h
(1.93 KB)
📄
os_solo.h
(1.9 KB)
📄
os_sos.h
(1.17 KB)
📄
os_sua.h
(1.16 KB)
📄
os_sun.h
(1.28 KB)
📄
os_sv2.h
(2.91 KB)
📄
os_sv4.h
(1.79 KB)
📄
os_ult.h
(1.01 KB)
📄
os_vu2.h
(2.34 KB)
📄
osdep.h
(1.45 KB)
📄
pseudo.h
(838 B)
📄
rfc822.h
(5.29 KB)
📄
shortsym.h
(17.65 KB)
📄
smtp.h
(2.48 KB)
📄
sslio.h
(2.25 KB)
📄
tcp.h
(1.73 KB)
📄
tcp_unix.h
(1.2 KB)
📄
unix.h
(6.55 KB)
📄
utf8.h
(22.43 KB)
📄
utf8aux.h
(1.49 KB)
Editing: rfc822.h
/* ======================================================================== * Copyright 1988-2006 University of Washington * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * * ======================================================================== */ /* * Program: RFC 2822 and MIME routines * * Author: Mark Crispin * Networks and Distributed Computing * Computing & Communications * University of Washington * Administration Building, AG-44 * Seattle, WA 98195 * Internet: MRC@CAC.Washington.EDU * * Date: 27 July 1988 * Last Edited: 30 August 2006 * * This original version of this file is * Copyright 1988 Stanford University * and was developed in the Symbolic Systems Resources Group of the Knowledge * Systems Laboratory at Stanford University in 1987-88, and was funded by the * Biomedical Research Technology Program of the NationalInstitutes of Health * under grant number RR-00785. */ #define MAXGROUPDEPTH 50 /* RFC [2]822 doesn't allow any group nesting */ #define MAXMIMEDEPTH 50 /* more than any sane MIMEgram */ /* Output buffering for RFC [2]822 */ typedef long (*soutr_t) (void *stream,char *string); typedef long (*rfc822out_t) (char *tmp,ENVELOPE *env,BODY *body,soutr_t f, void *s,long ok8bit); typedef struct rfc822buffer { soutr_t f; /* I/O flush routine */ void *s; /* stream for I/O routine */ char *beg; /* start of buffer */ char *cur; /* current buffer pointer */ char *end; /* end of buffer */ } RFC822BUFFER; typedef long (*rfc822outfull_t) (RFC822BUFFER *buf,ENVELOPE *env,BODY *body, long ok8bit); /* Function prototypes */ char *rfc822_default_subtype (unsigned short type); void rfc822_parse_msg_full (ENVELOPE **en,BODY **bdy,char *s,unsigned long i, STRING *bs,char *host,unsigned long depth, unsigned long flags); void rfc822_parse_content (BODY *body,STRING *bs,char *h,unsigned long depth, unsigned long flags); void rfc822_parse_content_header (BODY *body,char *name,char *s); void rfc822_parse_parameter (PARAMETER **par,char *text); void rfc822_parse_adrlist (ADDRESS **lst,char *string,char *host); ADDRESS *rfc822_parse_address (ADDRESS **lst,ADDRESS *last,char **string, char *defaulthost,unsigned long depth); ADDRESS *rfc822_parse_group (ADDRESS **lst,ADDRESS *last,char **string, char *defaulthost,unsigned long depth); ADDRESS *rfc822_parse_mailbox (char **string,char *defaulthost); long rfc822_phraseonly (char *end); ADDRESS *rfc822_parse_routeaddr (char *string,char **ret,char *defaulthost); ADDRESS *rfc822_parse_addrspec (char *string,char **ret,char *defaulthost); char *rfc822_parse_domain (char *string,char **end); char *rfc822_parse_phrase (char *string); char *rfc822_parse_word (char *string,const char *delimiters); char *rfc822_cpy (char *src); char *rfc822_quote (char *src); ADDRESS *rfc822_cpy_adr (ADDRESS *adr); void rfc822_skipws (char **s); char *rfc822_skip_comment (char **s,long trim); long rfc822_output_full (RFC822BUFFER *buf,ENVELOPE *env,BODY *body,long ok8); long rfc822_output_flush (RFC822BUFFER *buf); long rfc822_output_header (RFC822BUFFER *buf,ENVELOPE *env,BODY *body, const char *specials,long flags); long rfc822_output_header_line (RFC822BUFFER *buf,char *type,long resent, char *text); long rfc822_output_address_line (RFC822BUFFER *buf,char *type,long resent, ADDRESS *adr,const char *specials); long rfc822_output_address_list (RFC822BUFFER *buf,ADDRESS *adr,long pretty, const char *specials); long rfc822_output_address (RFC822BUFFER *buf,ADDRESS *adr); long rfc822_output_cat (RFC822BUFFER *buf,char *src,const char *specials); long rfc822_output_parameter (RFC822BUFFER *buf,PARAMETER *param); long rfc822_output_stringlist (RFC822BUFFER *buf,STRINGLIST *stl); long rfc822_output_body_header (RFC822BUFFER *buf,BODY *body); void rfc822_encode_body_7bit (ENVELOPE *env,BODY *body); void rfc822_encode_body_8bit (ENVELOPE *env,BODY *body); long rfc822_output_text (RFC822BUFFER *buf,BODY *body); void *rfc822_base64 (unsigned char *src,unsigned long srcl,unsigned long *len); unsigned char *rfc822_binary (void *src,unsigned long srcl,unsigned long *len); unsigned char *rfc822_qprint (unsigned char *src,unsigned long srcl, unsigned long *len); unsigned char *rfc822_8bit (unsigned char *src,unsigned long srcl, unsigned long *len); /* Legacy routines for compatibility with the past */ void rfc822_header (char *header,ENVELOPE *env,BODY *body); void rfc822_header_line (char **header,char *type,ENVELOPE *env,char *text); void rfc822_address_line (char **header,char *type,ENVELOPE *env,ADDRESS *adr); char *rfc822_write_address_full (char *dest,ADDRESS *adr,char *base); void rfc822_address (char *dest,ADDRESS *adr); void rfc822_cat (char *dest,char *src,const char *specials); void rfc822_write_body_header (char **header,BODY *body); long rfc822_output (char *t,ENVELOPE *env,BODY *body,soutr_t f,void *s, long ok8bit); long rfc822_output_body (BODY *body,soutr_t f,void *s); #define rfc822_write_address(dest,adr) \ rfc822_write_address_full (dest,adr,NIL) #define rfc822_parse_msg(en,bdy,s,i,bs,host,flags) \ rfc822_parse_msg_full (en,bdy,s,i,bs,host,0,flags)
Upload File
Create Folder