about summary refs log tree commit diff stats
path: root/src/types/buffersource.nim
blob: 109e836144ce47b2422cb9563b5c0fa462730390 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import options

when defined(posix):
  import posix

import data/charset
import io/request
import types/url

type
  BufferSourceType* = enum
    CLONE, LOAD_REQUEST, LOAD_PIPE

  BufferSource* = object
    location*: URL
    contenttype*: Option[string] # override
    charset*: Option[Charset] # override
    case t*: BufferSourceType
    of CLONE:
      clonepid*: Pid
    of LOAD_REQUEST:
      request*: Request
    of LOAD_PIPE:
      fd*: FileHandle