Add bx support for udps.

This commit is contained in:
steve 2003-03-18 01:36:14 +00:00
parent 6b71345142
commit 20c0d8f3ba
2 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: lexor.lex,v 1.76 2003/02/02 18:58:36 steve Exp $" #ident "$Id: lexor.lex,v 1.77 2003/03/18 01:36:14 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -174,6 +174,7 @@ W [ \t\b\f\r]+
<UDPTABLE>\(\?\?\) { return '*'; } <UDPTABLE>\(\?\?\) { return '*'; }
<UDPTABLE>\(01\) { return 'r'; } <UDPTABLE>\(01\) { return 'r'; }
<UDPTABLE>\(0[xX]\) { return 'Q'; } <UDPTABLE>\(0[xX]\) { return 'Q'; }
<UDPTABLE>\(b[xX]\) { return 'q'; }
<UDPTABLE>\(0\?\) { return 'P'; } <UDPTABLE>\(0\?\) { return 'P'; }
<UDPTABLE>\(10\) { return 'f'; } <UDPTABLE>\(10\) { return 'f'; }
<UDPTABLE>\(1[xX]\) { return 'M'; } <UDPTABLE>\(1[xX]\) { return 'M'; }

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#if HAVE_CVS_IDENT #if HAVE_CVS_IDENT
#ident "$Id: parse.y,v 1.173 2003/02/27 06:45:11 steve Exp $" #ident "$Id: parse.y,v 1.174 2003/03/18 01:36:14 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -2818,6 +2818,7 @@ udp_input_sym
| 'p' { $$ = 'p'; } | 'p' { $$ = 'p'; }
| 'P' { $$ = 'P'; } | 'P' { $$ = 'P'; }
| 'Q' { $$ = 'Q'; } | 'Q' { $$ = 'Q'; }
| 'q' { $$ = 'q'; }
| '_' { $$ = '_'; } | '_' { $$ = '_'; }
| '+' { $$ = '+'; } | '+' { $$ = '+'; }
; ;