repo.or.cz
/
opsoft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
usage info
[opsoft.git]
/
gclib2
/
include
/
dudp.h
blob
51af491b1a72b030c0a44f97b719854123e7526b
1
/*
2
* (c) Oleg Puchinin 2007
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_DUDP_H
8
#define DEFINE_DUDP_H
9
10
#ifndef DEFINE_DPBUF_H
11
#include <dpbuf.h>
12
#endif
13
14
class
DUdp
:
public
DPBuf
15
{
16
public
:
17
DUdp
();
18
~
DUdp
();
19
20
int
init
(
char
*
data
,
int
len
,
char
*
IP
,
uint16_t
PORT
);
21
char
*
ip
;
22
uint16_t
port
;
23
};
24
25
#endif
26