diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2000-05-30 15:33:56 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2000-05-30 15:33:56 +0000 |
commit | 377747465843e328d600963d8b56a2c74483adba (patch) | |
tree | 27b6883fe471f8283d12c9fb9e4a9c6b80e69e2d /usr.sbin/pccard/pccardd/cardd.h | |
parent | d18ea90c6c5c224ea38b12b529d83498030ac4c0 (diff) | |
download | FreeBSD-src-377747465843e328d600963d8b56a2c74483adba.zip FreeBSD-src-377747465843e328d600963d8b56a2c74483adba.tar.gz |
Add regex(3) matching feature for card line strings.
- This feature will be enabled only if the string is
enclosed by '/' something like;
card "SunDisk" "/.*/"
- Also added matching additional information strings
followed by version string. This is for the card which is
difficult to idendentify by only the manufacturer and
card version strings matching.
card "MACNICA" "MIRACLE SCSI" "mPS100" "D.0"
Reviewed by: imp
Obtained from: PAO
Diffstat (limited to 'usr.sbin/pccard/pccardd/cardd.h')
-rw-r--r-- | usr.sbin/pccard/pccardd/cardd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/pccard/pccardd/cardd.h b/usr.sbin/pccard/pccardd/cardd.h index d983fcc..675cc5a 100644 --- a/usr.sbin/pccard/pccardd/cardd.h +++ b/usr.sbin/pccard/pccardd/cardd.h @@ -67,6 +67,8 @@ struct card { struct card *next; char *manuf; char *version; + char *add_info1; + char *add_info2; u_char func_id; int deftype; struct ether *ether; /* For net cards, ether at offset */ |