~ubuntu-branches/ubuntu/intrepid/luatex/intrepid

« back to all changes in this revision

Viewing changes to src/libs/luasocket/src/unix.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-07-07 11:01:13 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080707110113-1y7lam37zbbb7bbt
Tags: 0.28.0-1
* two new upstream releases, see the respective ANNOUCE files
* add luasocket license statement to debian/copyright
* activate the pdfluatex format
* prepare for latex based formats
  - add the ini files from TeX Live
  - add debian/formats file
  - adjust dh_installtex incantation
  the problem is that luatex dies when loading ukrhypmp.tex from 
  texlive-lang-cyrillic, but we don't want to conflict with it by now.
* policy 3.8.0, rename README.Debian-source to README.source, and add
  notes about quilt usage
* disable patch fix-pwd-inclusion (it was from svn)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef UNIX_H
 
2
#define UNIX_H
 
3
/*=========================================================================*\
 
4
* Unix domain object
 
5
* LuaSocket toolkit
 
6
*
 
7
* This module is just an example of how to extend LuaSocket with a new 
 
8
* domain.
 
9
*
 
10
* RCS ID: $Id: unix.h,v 1.9 2006/03/13 07:16:39 diego Exp $
 
11
\*=========================================================================*/
 
12
#include "lua.h"
 
13
 
 
14
#include "buffer.h"
 
15
#include "timeout.h"
 
16
#include "socket.h"
 
17
 
 
18
typedef struct t_unix_ {
 
19
    t_socket sock;
 
20
    t_io io;
 
21
    t_buffer buf;
 
22
    t_timeout tm;
 
23
} t_unix;
 
24
typedef t_unix *p_unix;
 
25
 
 
26
int luaopen_socket_unix(lua_State *L);
 
27
 
 
28
#endif /* UNIX_H */