[go: up one dir, main page]

Menu

[897c37]: / runtime / dgram.h  Maximize  Restore  History

Download this file

45 lines (35 with data), 806 Bytes

 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
41
/*
** $Id: dgram.h,v 1.3 2008/12/18 04:17:02 dredd Exp $
**
** $Source: /cvsroot/swlpc/swlpc/runtime/dgram.h,v $
** $Revision: 1.3 $
** $Date: 2008/12/18 04:17:02 $
** $State: Exp $
**
** Author: Mike McGaughey & Geoff Wong, 1993-1999
**
** See the file "Copying" distributed with this file.
*/
#ifndef _DGRAM_H
#define _DGRAM_H
#if 0
#include <sys/types.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
/* #include <sys/un.h> */
#include <arpa/inet.h>
#endif
#include "comm.h"
#include <errno.h>
#include "value.h"
#include "trans.h"
#include "gd_config.h"
int
do_dg_read(int s),
do_dg_write(int a,int b,int c,int d,int port,char *buf, int len),
do_dg_retry(),
retry_send(struct sockaddr_in *addr, char * buf, int len)
;
extern int dgram_sock;
#endif