Fix some problems in protocol preferences blurbs.

svn path=/trunk/; revision=4582
This commit is contained in:
Guy Harris 2002-01-20 23:25:55 +00:00
parent b11f1955e4
commit a45d3d3bfe
3 changed files with 10 additions and 9 deletions

View File

@ -1,7 +1,7 @@
/* packet-ldp.c
* Routines for LDP (RFC 3036) packet disassembly
*
* $Id: packet-ldp.c,v 1.24 2002/01/20 22:12:26 guy Exp $
* $Id: packet-ldp.c,v 1.25 2002/01/20 23:25:54 guy Exp $
*
* Copyright (c) November 2000 by Richard Sharpe <rsharpe@ns.aus.com>
*
@ -867,12 +867,12 @@ proto_register_ldp(void)
ldp_module = prefs_register_protocol(proto_ldp, proto_reg_handoff_ldp);
prefs_register_uint_preference(ldp_module, "tcp.port", "LDP TCP Port",
"Set the port for messages (if other"
"Set the TCP port for messages (if other"
" than the default of 646)",
10, &global_ldp_tcp_port);
prefs_register_uint_preference(ldp_module, "udp.port", "LDP UDP Port",
"Set the port for messages (if other"
"Set the UDP port for messages (if other"
" than the default of 646)",
10, &global_ldp_udp_port);

View File

@ -1,7 +1,7 @@
/* packet-pgm.c
* Routines for pgm packet disassembly
*
* $Id: packet-pgm.c,v 1.12 2001/12/10 00:25:31 guy Exp $
* $Id: packet-pgm.c,v 1.13 2002/01/20 23:25:54 guy Exp $
*
* Copyright (c) 2000 by Talarian Corp
*
@ -1089,16 +1089,16 @@ proto_register_pgm(void)
pgm_module = prefs_register_protocol(proto_pgm, proto_rereg_pgm);
prefs_register_uint_preference(pgm_module, "udp.encap_ucast_port",
"PGM Encap Unicast Port (Default 3055)",
"PGM Encap Unicast Port (standard is 3055)",
"PGM Encap is PGM packets encapsulated in UDP packets"
" (Note: This is option is off by default",
" (Note: This option is off, i.e. port is 0, by default)",
10, &udp_encap_ucast_port);
old_encap_ucast_port = udp_encap_ucast_port;
prefs_register_uint_preference(pgm_module, "udp.encap_mcast_port",
"PGM Encap Multicast Port (Default 3056)",
"PGM Encap Multicast Port (standard is 3056)",
"PGM Encap is PGM packets encapsulated in UDP packets"
" (Note: This is option is off by default",
" (Note: This option is off, i.e. port is 0, by default)",
10, &udp_encap_mcast_port);
old_encap_mcast_port = udp_encap_mcast_port;

View File

@ -2,7 +2,7 @@
* Routines for mgcp packet disassembly
* RFC 2705
*
* $Id: packet-mgcp.c,v 1.29 2001/12/10 00:26:21 guy Exp $
* $Id: packet-mgcp.c,v 1.30 2002/01/20 23:25:55 guy Exp $
*
* Copyright (c) 2000 by Ed Warnicke <hagbard@physics.rutgers.edu>
*
@ -557,6 +557,7 @@ proto_register_mgcp(void)
prefs_register_bool_preference(mgcp_module, "display_mgcp_message_count",
"Display the number of MGCP messages",
"Display the number of MGCP messages "
"found in a packet in the protocol column.",
&global_mgcp_message_count);
}