2011-12-31 16:14:18 +08:00
|
|
|
/**
|
|
|
|
* @file config.h
|
|
|
|
* @brief Configuration file code
|
|
|
|
* @note Copyright (C) 2011 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-1301 USA.
|
|
|
|
*/
|
|
|
|
#ifndef HAVE_CONFIG_H
|
|
|
|
#define HAVE_CONFIG_H
|
|
|
|
|
|
|
|
#include "ds.h"
|
2012-08-21 01:56:24 +08:00
|
|
|
#include "dm.h"
|
|
|
|
#include "transport.h"
|
2012-09-29 02:45:54 +08:00
|
|
|
#include "servo.h"
|
2012-11-14 05:35:04 +08:00
|
|
|
#include "sk.h"
|
2012-08-21 01:56:24 +08:00
|
|
|
|
|
|
|
#define MAX_PORTS 8
|
2012-08-21 01:56:40 +08:00
|
|
|
#define MAX_IFNAME_SIZE 16
|
2012-08-21 01:56:24 +08:00
|
|
|
|
|
|
|
/** Defines a network interface, with PTP options. */
|
|
|
|
struct interface {
|
2012-08-21 01:56:40 +08:00
|
|
|
char name[MAX_IFNAME_SIZE + 1];
|
2012-08-21 01:56:24 +08:00
|
|
|
enum delay_mechanism dm;
|
|
|
|
enum transport_type transport;
|
2012-08-21 01:56:50 +08:00
|
|
|
struct port_defaults pod;
|
2012-11-14 05:35:04 +08:00
|
|
|
struct sk_ts_info ts_info;
|
2012-08-21 01:56:24 +08:00
|
|
|
};
|
2011-12-31 16:14:18 +08:00
|
|
|
|
2012-08-21 01:57:01 +08:00
|
|
|
#define CFG_IGNORE_DM (1 << 0)
|
|
|
|
#define CFG_IGNORE_TRANSPORT (1 << 1)
|
|
|
|
#define CFG_IGNORE_TIMESTAMPING (1 << 2)
|
|
|
|
#define CFG_IGNORE_SLAVEONLY (1 << 3)
|
|
|
|
#define CFG_IGNORE_PRINT_LEVEL (1 << 4)
|
|
|
|
#define CFG_IGNORE_USE_SYSLOG (1 << 5)
|
|
|
|
#define CFG_IGNORE_VERBOSE (1 << 6)
|
|
|
|
|
2012-03-21 03:09:40 +08:00
|
|
|
struct config {
|
2012-08-21 01:57:01 +08:00
|
|
|
/* configuration override */
|
|
|
|
int cfg_ignore;
|
|
|
|
|
2012-08-21 01:56:24 +08:00
|
|
|
/* configured interfaces */
|
|
|
|
struct interface iface[MAX_PORTS];
|
|
|
|
int nports;
|
|
|
|
|
2012-08-21 01:56:35 +08:00
|
|
|
enum timestamp_type timestamping;
|
|
|
|
enum transport_type transport;
|
|
|
|
enum delay_mechanism dm;
|
|
|
|
|
2012-12-01 04:52:37 +08:00
|
|
|
struct default_ds dds;
|
2012-08-21 01:56:29 +08:00
|
|
|
struct port_defaults pod;
|
2012-07-28 04:34:34 +08:00
|
|
|
int *assume_two_step;
|
2013-04-05 23:52:14 +08:00
|
|
|
int *tx_timestamp_timeout;
|
2012-09-29 02:45:54 +08:00
|
|
|
|
|
|
|
enum servo_type clock_servo;
|
|
|
|
|
2012-05-03 17:17:34 +08:00
|
|
|
double *pi_proportional_const;
|
|
|
|
double *pi_integral_const;
|
2012-09-29 02:46:00 +08:00
|
|
|
double *pi_offset_const;
|
|
|
|
|
2012-07-27 17:30:22 +08:00
|
|
|
unsigned char *ptp_dst_mac;
|
|
|
|
unsigned char *p2p_dst_mac;
|
2012-11-26 03:30:14 +08:00
|
|
|
unsigned char *udp6_scope;
|
2012-08-21 01:56:56 +08:00
|
|
|
|
|
|
|
int print_level;
|
|
|
|
int use_syslog;
|
|
|
|
int verbose;
|
2012-03-21 03:09:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int config_read(char *name, struct config *cfg);
|
2012-08-21 01:56:45 +08:00
|
|
|
int config_create_interface(char *name, struct config *cfg);
|
2011-12-31 16:14:18 +08:00
|
|
|
|
|
|
|
#endif
|