Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
meinheld / meinheld / server / input.h
Size: Mime:
#ifndef INPUT_H
#define INPUT_H

#include "meinheld.h"
#include "buffer.h"
#include "http_parser.h"
#include "client.h"

typedef struct {
    PyObject_HEAD
    buffer_t *buffer;
    Py_ssize_t pos;
} InputObject;

extern PyTypeObject InputObjectType;

void InputObject_list_fill(void);

void InputObject_list_clear(void);

PyObject* InputObject_New(buffer_t *buf);

#endif