1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/**
* @file unicast_client.h
* @brief Unicast client implementation
* @note Copyright (C) 2018 Richard Cochran <richardcochran@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA.
*/
#ifndef HAVE_UNICAST_CLIENT_H
#define HAVE_UNICAST_CLIENT_H
#define UNICAST_CANCEL_ALL (1 << ANNOUNCE | 1 << SYNC | 1 << DELAY_RESP)
#define UNICAST_CANCEL_SYDY (1 << SYNC | 1 << DELAY_RESP)
/**
* Handles a CANCEL_UNICAST_TRANSMISSION TLV from the grantor.
* @param p The port on which the signaling message was received.
* @param m The signaling message containing the cancellation.
* @param extra The TLV containing the cancellation.
* @return Zero on success, or non-zero
* if transmission of the ACK message failed.
*/
int unicast_client_cancel(struct port *p, struct ptp_message *m,
struct tlv_extra *extra);
/**
* Finds and initializes the unicast master table configured for this
* port, if any.
* @param port The port in question.
* @return Zero on success, non-zero otherwise.
*/
int unicast_client_initialize(struct port *port);
/**
* Frees all of the resources associated with a port's unicast client.
* @param p The port in question.
*/
void unicast_client_cleanup(struct port *p);
/**
* Tests whether a unicast master table is associated with a given port.
* @param p The port in question.
* @return One (1) if a unicast master table is configured on the port,
* or zero otherwise.
*/
int unicast_client_enabled(struct port *p);
/**
* Handles a GRANT_UNICAST_TRANSMISSION TLV from the grantor.
* @param p The port on which the signaling message was received.
* @param m The signaling message containing the grant.
* @param extra The TLV containing the grant.
*/
void unicast_client_grant(struct port *p, struct ptp_message *m,
struct tlv_extra *extra);
/**
* Programs the unicast request timer.
* @param p The port in question.
* @return Zero on success, non-zero otherwise.
*/
int unicast_client_set_tmo(struct port *p);
/**
* Notifies the unicast client code that the port state has changed.
* @param p The port in question.
*/
void unicast_client_state_changed(struct port *p);
/**
* Handles the unicast request timer, sending requests as needed.
* @param p The port in question.
* @return Zero on success, non-zero otherwise.
*/
int unicast_client_timer(struct port *p);
/**
* Check whether a message was received from an entry in the unicast
* master table.
* @param p The port in question.
* @param m The message in question.
* @return One (1) if the message is from an entry in the unicast
* master table, or zero otherwise.
*/
int unicast_client_msg_is_from_master_table_entry(struct port *p,
struct ptp_message *m);
/**
* Transmit CANCEL_UNICAST_TRANSMISSION TLV to destination address.
* @param p The port in question.
* @param dst The destination address.
* @param bitmask Cancel message type bitmask
* @param
* @return Zero on success, non-zero otherwise.
*/
int unicast_client_tx_cancel(struct port *p,
struct unicast_master_address *dst,
unsigned int bitmask);
#endif
|