comparison: sources/network/udpsocket.h
sources/network/udpsocket.h
- branch
- protocol5
- changeset 153
- 82aac80a2f1d
- parent 152
- 6be21be4bea1
- child 157
- 42bb29924218
equal
deleted
inserted
replaced
| 36 |
36 |
| 37 enum { MAX_DATAGRAM_LENGTH = 5120 }; |
37 enum { MAX_DATAGRAM_LENGTH = 5120 }; |
| 38 |
38 |
| 39 struct Datagram |
39 struct Datagram |
| 40 { |
40 { |
| 41 Bytestream data; |
41 Bytestream message; |
| 42 IPAddress from; |
42 IPAddress address; |
| 43 }; |
43 }; |
| 44 |
44 |
| 45 // ------------------------------------------------------------------------------------------------- |
45 // ------------------------------------------------------------------------------------------------- |
| 46 // |
46 // |
| 47 class UDPSocket |
47 class UDPSocket |