File: curb_postfield.h

package info (click to toggle)
ruby-curb 0.8.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 604 kB
  • ctags: 880
  • sloc: ansic: 4,242; ruby: 2,768; makefile: 3
file content (40 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (6)
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
36
37
38
39
40
/* curb_postfield.h - Field class for POST method
 * Copyright (c)2006 Ross Bamford. 
 * Licensed under the Ruby License. See LICENSE for details.
 * 
 * $Id: curb_postfield.h 4 2006-11-17 18:35:31Z roscopeco $
 */
#ifndef __CURB_POSTFIELD_H
#define __CURB_POSTFIELD_H

#include "curb.h"

/* 
 * postfield doesn't actually wrap a curl_httppost - instead,
 * it just holds together some ruby objects and has a C-side 
 * method to add it to a given form list during the perform.
 */
typedef struct {  
  /* Objects we associate */
  VALUE name;  
  VALUE content;
  VALUE content_type;
  VALUE content_proc;
  VALUE local_file;
  VALUE remote_file;
  
  /* this will sometimes hold a string, which is the result
   * of the content_proc invocation. We need it to hang around.
   */
  VALUE buffer_str;
} ruby_curl_postfield;

extern VALUE cCurlPostField;

void append_to_form(VALUE self, 
                    struct curl_httppost **first, 
                    struct curl_httppost **last);

void init_curb_postfield();

#endif