Home
last modified time | relevance | path

Searched refs:proto_config (Results 1 – 25 of 86) sorted by relevance

1234

/dports/net/bird2/bird-2.0.8/nest/
H A Dprotocol.h25 struct proto_config;
74 struct proto * (*init)(struct proto_config *); /* Create new instance */
85 …void (*copy_config)(struct proto_config *, struct proto_config *); /* Copy config from given proto…
92 struct proto * proto_spawn(struct proto_config *cf, uint disabled);
112 struct proto_config { struct
164 struct proto_config *cf; /* Configuration data */
268 void *proto_new(struct proto_config *);
270 void proto_copy_config(struct proto_config *dest, struct proto_config *src);
271 void proto_clone_config(struct symbol *sym, struct proto_config *parent);
306 proto_get_router_id(struct proto_config *pc) in proto_get_router_id()
[all …]
H A Drt-dev.c119 dev_postconfig(struct proto_config *CF) in dev_postconfig()
136 dev_init(struct proto_config *CF) in dev_init()
152 dev_reconfigure(struct proto *P, struct proto_config *CF) in dev_reconfigure()
170 dev_copy_config(struct proto_config *dest, struct proto_config *src) in dev_copy_config()
H A Dproto-hooks.c36 void postconfig(struct proto_config *c) in postconfig()
48 struct proto *init(struct proto_config *c) in init()
65 int reconfigure(struct proto *p, struct proto_config *c) in reconfigure()
H A Dproto.c95 proto_cf_find_channel(struct proto_config *pc, uint net_type) in proto_cf_find_channel()
993 proto_new(struct proto_config *cf) in proto_new()
1013 proto_init(struct proto_config *c, node *n) in proto_init()
1063 struct proto_config *cf = cfg_allocz(pr->config_size); in proto_config_new()
1093 proto_copy_config(struct proto_config *dest, struct proto_config *src) in proto_copy_config()
1132 proto_clone_config(struct symbol *sym, struct proto_config *parent) in proto_clone_config()
1145 proto_undef_clone(struct symbol *sym, struct proto_config *cf) in proto_undef_clone()
1179 proto_reconfigure(struct proto *p, struct proto_config *oc, struct proto_config *nc, int type) in proto_reconfigure()
1240 struct proto_config *oc, *nc; in protos_commit()
1370 struct proto_config *nc = p->cf_new; in proto_rethink_goal()
[all …]
/dports/net/bird/bird-1.6.8/nest/
H A Dprotocol.h25 struct proto_config;
49 struct proto * (*init)(struct proto_config *); /* Create new instance */
60 …void (*copy_config)(struct proto_config *, struct proto_config *); /* Copy config from given proto…
86 struct proto_config { struct
142 struct proto_config *cf; /* Configuration data */
254 void *proto_new(struct proto_config *, unsigned size);
256 void proto_copy_config(struct proto_config *dest, struct proto_config *src);
261 proto_copy_rest(struct proto_config *dest, struct proto_config *src, unsigned size) in proto_copy_rest()
262 { memcpy(dest + 1, src + 1, size - sizeof(struct proto_config)); } in proto_copy_rest()
291 proto_get_router_id(struct proto_config *pc) in proto_get_router_id()
[all …]
H A Drt-dev.c111 dev_init(struct proto_config *c) in dev_init()
121 dev_reconfigure(struct proto *p, struct proto_config *new) in dev_reconfigure()
131 dev_copy_config(struct proto_config *dest, struct proto_config *src) in dev_copy_config()
H A Dproto-hooks.c36 void postconfig(struct proto_config *c) in postconfig()
48 struct proto *init(struct proto_config *c) in init()
65 int reconfigure(struct proto *p, struct proto_config *c) in reconfigure()
H A Dproto.c114 proto_new(struct proto_config *c, unsigned size) in proto_new()
266 struct proto_config *c = cfg_allocz(pr->config_size); in proto_config_new()
294 proto_copy_config(struct proto_config *dest, struct proto_config *src) in proto_copy_config()
317 memcpy(dest, src, sizeof(struct proto_config)); in proto_copy_config()
362 struct proto_config *x; in protos_postconfig()
380 proto_init(struct proto_config *c) in proto_init()
405 proto_reconfigure(struct proto *p, struct proto_config *oc, struct proto_config *nc, int type) in proto_reconfigure()
521 struct proto_config *oc, *nc; in protos_commit()
612 struct proto_config *nc = p->cf_new; in proto_rethink_goal()
1699 cmd(((struct proto_config *)s->def)->proto, arg, 0); in proto_apply_cmd_symbol()
[all …]
H A Drt-dev.h13 struct proto_config c;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/rtc_tools/network_tester/
H A Dconfig_reader.cc39 auto proto_config = proto_all_configs_.configs(proto_config_index_++); in GetNextConfig() local
40 RTC_DCHECK(proto_config.has_packet_send_interval_ms()); in GetNextConfig()
41 RTC_DCHECK(proto_config.has_packet_size()); in GetNextConfig()
42 RTC_DCHECK(proto_config.has_execution_time_ms()); in GetNextConfig()
44 config.packet_send_interval_ms = proto_config.packet_send_interval_ms(); in GetNextConfig()
45 config.packet_size = proto_config.packet_size(); in GetNextConfig()
46 config.execution_time_ms = proto_config.execution_time_ms(); in GetNextConfig()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/rtc_tools/network_tester/
H A Dconfig_reader.cc39 auto proto_config = proto_all_configs_.configs(proto_config_index_++); in GetNextConfig() local
40 RTC_DCHECK(proto_config.has_packet_send_interval_ms()); in GetNextConfig()
41 RTC_DCHECK(proto_config.has_packet_size()); in GetNextConfig()
42 RTC_DCHECK(proto_config.has_execution_time_ms()); in GetNextConfig()
44 config.packet_send_interval_ms = proto_config.packet_send_interval_ms(); in GetNextConfig()
45 config.packet_size = proto_config.packet_size(); in GetNextConfig()
46 config.execution_time_ms = proto_config.execution_time_ms(); in GetNextConfig()
/dports/net/bird/bird-1.6.8/sysdep/unix/
H A Dkrt.h45 struct proto_config c;
82 struct proto_config * kif_init_config(int class);
104 struct proto_config c;
119 struct proto_config * krt_init_config(int class);
H A Dkrt.c171 kif_init(struct proto_config *c) in kif_init()
211 kif_reconfigure(struct proto *p, struct proto_config *new) in kif_reconfigure()
249 struct proto_config *
260 return (struct proto_config *) kif_cf; in kif_init_config()
264 kif_copy_config(struct proto_config *dest, struct proto_config *src) in kif_copy_config()
1111 krt_init(struct proto_config *C) in krt_init()
1180 krt_reconfigure(struct proto *p, struct proto_config *new) in krt_reconfigure()
1201 krt_postconfig(struct proto_config *C) in krt_postconfig()
1216 struct proto_config *
1228 return (struct proto_config *) krt_cf; in krt_init_config()
[all …]
/dports/net/ntp/ntp-4.2.8p15/ntpd/
H A Dcmd_args.c59 proto_config(PROTO_AUTHENTICATE, 1, 0., NULL); in getCmdOpts()
61 proto_config(PROTO_AUTHENTICATE, 0, 0., NULL); in getCmdOpts()
64 proto_config(PROTO_BROADCLIENT, 1, 0., NULL); in getCmdOpts()
108 proto_config(PROTO_BROADDELAY, 0, tmp, NULL); in getCmdOpts()
/dports/net/bird2/bird-2.0.8/sysdep/unix/
H A Dkrt.h38 struct proto_config c;
77 struct proto_config * kif_init_config(int class);
100 struct proto_config c;
125 struct proto_config * krt_init_config(int class);
H A Dkrt.c130 kif_init(struct proto_config *c) in kif_init()
167 kif_reconfigure(struct proto *p, struct proto_config *new) in kif_reconfigure()
205 struct proto_config *
216 return (struct proto_config *) kif_cf; in kif_init_config()
220 kif_copy_config(struct proto_config *dest, struct proto_config *src) in kif_copy_config()
1007 krt_postconfig(struct proto_config *CF) in krt_postconfig()
1039 krt_init(struct proto_config *CF) in krt_init()
1122 krt_reconfigure(struct proto *p, struct proto_config *CF) in krt_reconfigure()
1137 struct proto_config *
1149 return (struct proto_config *) krt_cf; in krt_init_config()
[all …]
/dports/net/bird/bird-1.6.8/proto/pipe/
H A Dpipe.c143 pipe_init(struct proto_config *C) in pipe_init()
211 pipe_postconfig(struct proto_config *C) in pipe_postconfig()
229 pipe_reconfigure(struct proto *P, struct proto_config *new) in pipe_reconfigure()
232 struct proto_config *old = P->cf; in pipe_reconfigure()
273 pipe_copy_config(struct proto_config *dest, struct proto_config *src) in pipe_copy_config()
/dports/net/bird2/bird-2.0.8/proto/pipe/
H A Dpipe.c122 pipe_postconfig(struct proto_config *CF) in pipe_postconfig()
181 pipe_init(struct proto_config *CF) in pipe_init()
197 pipe_reconfigure(struct proto *P, struct proto_config *CF) in pipe_reconfigure()
206 pipe_copy_config(struct proto_config *dest UNUSED, struct proto_config *src UNUSED) in pipe_copy_config()
H A Dpipe.h13 struct proto_config c;
/dports/devel/p5-MooseX-App/MooseX-App-1.42/lib/MooseX/App/Plugin/Config/Meta/
H A DClass.pm18 return $self->proto_config($metaclass,$result,$errors);
21 sub proto_config { subroutine
/dports/net/bird2/bird-2.0.8/proto/perf/
H A Dperf.c247 perf_init(struct proto_config *CF) in perf_init()
296 perf_reconfigure(struct proto *P UNUSED, struct proto_config *CF UNUSED) in perf_reconfigure()
302 perf_copy_config(struct proto_config *dest UNUSED, struct proto_config *src UNUSED) in perf_copy_config()
/dports/net/bird/bird-1.6.8/proto/mrt/
H A Dmrt.h22 struct proto_config c;
150 void mrt_check_config(struct proto_config *C);
/dports/net/bird2/bird-2.0.8/proto/mrt/
H A Dmrt.h22 struct proto_config c;
152 void mrt_check_config(struct proto_config *C);
/dports/net/ntpsec/ntpsec-NTPsec_1_2_1/devel/trace/
H A Dntpsec-ntp-proto.ini25 trace = proto_config
53 proto_config = void, int, unsigned long, double, sockaddr_u* key
/dports/net/bird2/bird-2.0.8/proto/rpki/
H A Drpki.c746 rpki_reconfigure(struct proto *P, struct proto_config *CF) in rpki_reconfigure()
769 rpki_init(struct proto_config *CF) in rpki_init()
922 rpki_postconfig(struct proto_config *CF) in rpki_postconfig()
930 rpki_copy_config(struct proto_config *dest UNUSED, struct proto_config *src UNUSED) in rpki_copy_config()

1234