usage info
[opsoft.git] / gclib2 / include / dudp.h
blob51af491b1a72b030c0a44f97b719854123e7526b
1 /*
2 * (c) Oleg Puchinin 2007
3 * graycardinalster@gmail.com
5 */
7 #ifndef DEFINE_DUDP_H
8 #define DEFINE_DUDP_H
10 #ifndef DEFINE_DPBUF_H
11 #include <dpbuf.h>
12 #endif
14 class DUdp : public DPBuf
16 public:
17 DUdp ();
18 ~DUdp ();
20 int init (char * data, int len, char * IP, uint16_t PORT);
21 char * ip;
22 uint16_t port;
25 #endif