Panda3D
Loading...
Searching...
No Matches
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 */
18set_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 */
27get_target() const {
28 return _target;
29}
Represents a single TCP or UDP socket for input or output.
Definition connection.h:29
void set_target(Connection *connection)
Specifies the Connection that will receive all future Datagrams sent.
Connection * get_target() const
Returns the current target Connection, or NULL if the target has not yet been set.