Panda3D
panda
src
net
datagramSinkNet.I
Go to the documentation of this file.
1
/**
2
* PANDA 3D SOFTWARE
3
* Copyright (c) Carnegie Mellon University. All rights reserved.
4
*
5
* All use of this software is subject to the terms of the revised BSD
6
* license. You should have received a copy of this license along
7
* with this source code in a file named "LICENSE."
8
*
9
* @file datagramSinkNet.I
10
* @author drose
11
* @date 2009-02-15
12
*/
13
14
/**
15
* Specifies the Connection that will receive all future Datagrams sent.
16
*/
17
INLINE
void
DatagramSinkNet::
18
set_target
(
Connection
*connection) {
19
_target = connection;
20
}
21
22
/**
23
* Returns the current target Connection, or NULL if the target has not yet
24
* been set. See set_target().
25
*/
26
INLINE
Connection
*
DatagramSinkNet::
27
get_target
()
const
{
28
return
_target;
29
}
Connection
Represents a single TCP or UDP socket for input or output.
Definition:
connection.h:29
DatagramSinkNet::set_target
void set_target(Connection *connection)
Specifies the Connection that will receive all future Datagrams sent.
Definition:
datagramSinkNet.I:18
DatagramSinkNet::get_target
Connection * get_target() const
Returns the current target Connection, or NULL if the target has not yet been set.
Definition:
datagramSinkNet.I:27
Generated on Sun Dec 27 2020 13:23:06 for Panda3D by
1.8.20