compatibility/collects/net/mime-sig.ss
Eli Barzilay ec81ffebfc reformatting
svn: r9853

original commit: 0d41afdb6d470299616dd1db944ce4577c5a64bf
2008-05-15 16:55:15 +00:00

25 lines
848 B
Scheme

#lang scheme/signature
;; -- exceptions raised --
(struct mime-error () #:omit-constructor)
(struct unexpected-termination (msg) #:omit-constructor)
(struct missing-multipart-boundary-parameter () #:omit-constructor)
(struct malformed-multipart-entity (msg) #:omit-constructor)
(struct empty-mechanism () #:omit-constructor)
(struct empty-type () #:omit-constructor)
(struct empty-subtype () #:omit-constructor)
(struct empty-disposition-type () #:omit-constructor)
;; -- basic mime structures --
(struct message (version entity fields))
(struct entity (type subtype charset encoding
disposition params id
description other fields
parts body))
(struct disposition (type filename creation
modification read
size params))
;; -- mime methods --
mime-analyze