Re: UDP Broadcast
"Steve Trigero seecwriter-/[email protected] [rabbit-semi]" <[email protected]> Mon, 5 Nov 2018 23:36:18 +0000 (UTC)
| Newsgroups | gmane.comp.hardware.rabbit-semiconductor |
|---|---|
| Message-ID | <[email protected]> |
------=_Part_753198_1970677049.1541460978876
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
Thanks. It was right in front of me the whole time.
Steve
From: "Tom Collins tom-lnEA/wrDJtNWk0Htik3J/[email protected] [rabbit-semi]" <rabbit-semi@yahoo=
groups.com>
To: [email protected]=20
Sent: Monday, November 5, 2018 1:36 PM
Subject: Re: [rabbit-semi] UDP Broadcast
=20=20=20
=C2=A0 Thanks Mircea for knowing the stack better than I!
So you can call udp_peek() to get a copy of the _udp_datagram_info before c=
alling udp_recv(). =C2=A0You don=E2=80=99t need to use udp_recvfrom(), beca=
use you=E2=80=99ll already have the remote IP and port from that structure.
-Tom
On Nov 5, 2018, at 9:05 AM, [email protected] [rabbit-semi] <rabbit-semi@ya=
hoogroups.com> wrote:
Have looked into udp_peek function:
SYNTAX:=C2=A0 =C2=A0 =C2=A0=C2=A0int udp_peek(udp_Socket* s, _udp_datagram_=
info far * udi)
KEYWORDS:=C2=A0 =C2=A0 tcpip, socket
DESCRIPTION: Look into the UDP socket receive buffer to see if there is=C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0a datagram ready to be read us=
ing udp_recvfrom().=C2=A0 This=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0function does not remove the datagram from the buffer,=C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0but it allows the application to determine t=
he full=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0details about the ne=
xt datagram, including whether the=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
=C2=A0datagram was broadcast..
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0The returned data is put in=
*udi.=C2=A0 udi must point to a=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0valid data structure, or be NULL.=C2=A0 The data structure is=C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0typedef struct { =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0longword remip;=C2=A0 =C2=A0 // Remot=
e host IP address =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0word=C2=A0 =C2=
=A0 =C2=A0remport;=C2=A0 // Remote host port number =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0int=C2=A0 =C2=A0 =C2=A0 len;=C2=A0 =C2=A0 =C2=A0 // Len=
gth of datagram =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0word=C2=A0 =C2=A0 =
=C2=A0flags;=C2=A0 =C2=A0 // Flags as follows: =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 // This is an ICMP error entry =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_ICMP_ERROR 0x0001 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 // Type-of-service bit=
mask =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_T=
OS_MASK=C2=A0 =C2=A0 =C2=A0 =C2=A00x001E =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
=C2=A0 =C2=A0 =C2=A0 // Hardware address field is valid =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_HWA_VALID 0x0020 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 // Received on broadcast l=
ink-layer address.=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_BROADCAST_LL 0x0040=C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 // Re=
ceived on broadcast network (IP) address.=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_BROADCAST_IP =
0x0080 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 // Received =
on broadcast link-layer address.=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define UDI_MULTICAST_LL 0x0100=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 // Received on broadcast network (IP) address.=C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #define =
UDI_MULTICAST_IP 0x0200=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0byte=C2=A0 =C2=A0 =C2=A0iface;=C2=A0 =C2=A0 // Interface n=
umber=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0b=
yte=C2=A0 =C2=A0 =C2=A0hwa[6];=C2=A0 =C2=A0// Peer's hardware (Ethernet) MA=
C=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0} _udp_datag=
ram_info;
PARAMETER1:=C2=A0 UDP socket to checkPARAMETER2:=C2=A0 Where to store the r=
eturned information.
RETURN VALUE: 1=C2=A0=C2=A0=C2=A0 a normal datagram is in the receive buffe=
r=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 0=C2=A0 =C2=A0 no datagra=
m waiting=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 -3=C2=A0 =C2=A0an=
ICMP error message is in the receive buffer - this=C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0will only be returned if udi p=
arameter is not NULL.
Cheers,Mircea
#yiv3149453054 #yiv3149453054 -- #yiv3149453054ygrp-mkp {border:1px solid=
#d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}#yiv3149453054 #yi=
v3149453054ygrp-mkp hr {border:1px solid #d8d8d8;}#yiv3149453054 #yiv314945=
3054ygrp-mkp #yiv3149453054hd {color:#628c2a;font-size:85%;font-weight:700;=
line-height:122%;margin:10px 0;}#yiv3149453054 #yiv3149453054ygrp-mkp #yiv3=
149453054ads {margin-bottom:10px;}#yiv3149453054 #yiv3149453054ygrp-mkp .yi=
v3149453054ad {padding:0 0;}#yiv3149453054 #yiv3149453054ygrp-mkp .yiv31494=
53054ad p {margin:0;}#yiv3149453054 #yiv3149453054ygrp-mkp .yiv3149453054ad=
a {color:#0000ff;text-decoration:none;}#yiv3149453054 #yiv3149453054ygrp-s=
ponsor #yiv3149453054ygrp-lc {font-family:Arial;}#yiv3149453054 #yiv3149453=
054ygrp-sponsor #yiv3149453054ygrp-lc #yiv3149453054hd {margin:10px 0px;fon=
t-weight:700;font-size:78%;line-height:122%;}#yiv3149453054 #yiv3149453054y=
grp-sponsor #yiv3149453054ygrp-lc .yiv3149453054ad {margin-bottom:10px;padd=
ing:0 0;}#yiv3149453054 #yiv3149453054actions {font-family:Verdana;font-siz=
e:11px;padding:10px 0;}#yiv3149453054 #yiv3149453054activity {background-co=
lor:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}#yi=
v3149453054 #yiv3149453054activity span {font-weight:700;}#yiv3149453054 #y=
iv3149453054activity span:first-child {text-transform:uppercase;}#yiv314945=
3054 #yiv3149453054activity span a {color:#5085b6;text-decoration:none;}#yi=
v3149453054 #yiv3149453054activity span span {color:#ff7900;}#yiv3149453054=
#yiv3149453054activity span .yiv3149453054underline {text-decoration:under=
line;}#yiv3149453054 .yiv3149453054attach {clear:both;display:table;font-fa=
mily:Arial;font-size:12px;padding:10px 0;width:400px;}#yiv3149453054 .yiv31=
49453054attach div a {text-decoration:none;}#yiv3149453054 .yiv3149453054at=
tach img {border:none;padding-right:5px;}#yiv3149453054 .yiv3149453054attac=
h label {display:block;margin-bottom:5px;}#yiv3149453054 .yiv3149453054atta=
ch label a {text-decoration:none;}#yiv3149453054 blockquote {margin:0 0 0 4=
px;}#yiv3149453054 .yiv3149453054bold {font-family:Arial;font-size:13px;fon=
t-weight:700;}#yiv3149453054 .yiv3149453054bold a {text-decoration:none;}#y=
iv3149453054 dd.yiv3149453054last p a {font-family:Verdana;font-weight:700;=
}#yiv3149453054 dd.yiv3149453054last p span {margin-right:10px;font-family:=
Verdana;font-weight:700;}#yiv3149453054 dd.yiv3149453054last p span.yiv3149=
453054yshortcuts {margin-right:0;}#yiv3149453054 div.yiv3149453054attach-ta=
ble div div a {text-decoration:none;}#yiv3149453054 div.yiv3149453054attach=
-table {width:400px;}#yiv3149453054 div.yiv3149453054file-title a, #yiv3149=
453054 div.yiv3149453054file-title a:active, #yiv3149453054 div.yiv31494530=
54file-title a:hover, #yiv3149453054 div.yiv3149453054file-title a:visited =
{text-decoration:none;}#yiv3149453054 div.yiv3149453054photo-title a, #yiv3=
149453054 div.yiv3149453054photo-title a:active, #yiv3149453054 div.yiv3149=
453054photo-title a:hover, #yiv3149453054 div.yiv3149453054photo-title a:vi=
sited {text-decoration:none;}#yiv3149453054 div#yiv3149453054ygrp-mlmsg #yi=
v3149453054ygrp-msg p a span.yiv3149453054yshortcuts {font-family:Verdana;f=
ont-size:10px;font-weight:normal;}#yiv3149453054 .yiv3149453054green {color=
:#628c2a;}#yiv3149453054 .yiv3149453054MsoNormal {margin:0 0 0 0;}#yiv31494=
53054 o {font-size:0;}#yiv3149453054 #yiv3149453054photos div {float:left;w=
idth:72px;}#yiv3149453054 #yiv3149453054photos div div {border:1px solid #6=
66666;min-height:62px;overflow:hidden;width:62px;}#yiv3149453054 #yiv314945=
3054photos div label {color:#666666;font-size:10px;overflow:hidden;text-ali=
gn:center;white-space:nowrap;width:64px;}#yiv3149453054 #yiv3149453054reco-=
category {font-size:77%;}#yiv3149453054 #yiv3149453054reco-desc {font-size:=
77%;}#yiv3149453054 .yiv3149453054replbq {margin:4px;}#yiv3149453054 #yiv31=
49453054ygrp-actbar div a:first-child {margin-right:2px;padding-right:5px;}=
#yiv3149453054 #yiv3149453054ygrp-mlmsg {font-size:13px;font-family:Arial, =
helvetica, clean, sans-serif;}#yiv3149453054 #yiv3149453054ygrp-mlmsg table=
{font-size:inherit;font:100%;}#yiv3149453054 #yiv3149453054ygrp-mlmsg sele=
ct, #yiv3149453054 input, #yiv3149453054 textarea {font:99% Arial, Helvetic=
a, clean, sans-serif;}#yiv3149453054 #yiv3149453054ygrp-mlmsg pre, #yiv3149=
453054 code {font:115% monospace;}#yiv3149453054 #yiv3149453054ygrp-mlmsg *=
{line-height:1.22em;}#yiv3149453054 #yiv3149453054ygrp-mlmsg #yiv314945305=
4logo {padding-bottom:10px;}#yiv3149453054 #yiv3149453054ygrp-msg p a {font=
-family:Verdana;}#yiv3149453054 #yiv3149453054ygrp-msg p#yiv3149453054attac=
h-count span {color:#1E66AE;font-weight:700;}#yiv3149453054 #yiv3149453054y=
grp-reco #yiv3149453054reco-head {color:#ff7900;font-weight:700;}#yiv314945=
3054 #yiv3149453054ygrp-reco {margin-bottom:20px;padding:0px;}#yiv314945305=
4 #yiv3149453054ygrp-sponsor #yiv3149453054ov li a {font-size:130%;text-dec=
oration:none;}#yiv3149453054 #yiv3149453054ygrp-sponsor #yiv3149453054ov li=
{font-size:77%;list-style-type:square;padding:6px 0;}#yiv3149453054 #yiv31=
49453054ygrp-sponsor #yiv3149453054ov ul {margin:0;padding:0 0 0 8px;}#yiv3=
149453054 #yiv3149453054ygrp-text {font-family:Georgia;}#yiv3149453054 #yiv=
3149453054ygrp-text p {margin:0 0 1em 0;}#yiv3149453054 #yiv3149453054ygrp-=
text tt {font-size:120%;}#yiv3149453054 #yiv3149453054ygrp-vital ul li:last=
-child {border-right:none !important;}#yiv3149453054=20
=20=20=20
------=_Part_753198_1970677049.1541460978876
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/htm=
l4/strict.dtd">
<html>
<head>
</head>
=20
<body style=3D"background-color: #fff;">
<span style=3D"display:none"> </span>
<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id=3D"ygrp-mlmsg" style=3D"position:relative;">
<div id=3D"ygrp-msg" style=3D"z-index: 1;">
<!--~-|**|PrettyHtmlEndT|**|-~-->
<div id=3D"ygrp-text" >
=20=20=20=20=20=20
=20=20=20=20=20=20
<p><div style=3D"color:#000;background-color:#fff;font-family:times n=
ew roman, new york, times, serif;font-size:16px;"><div id=3D"yui_3_16_0_ym1=
9_1_1541431695536_11028"><span id=3D"yui_3_16_0_ym19_1_1541431695536_11027"=
>Thanks. It was right in front of me the whole time.</span></div><div id=3D=
"yui_3_16_0_ym19_1_1541431695536_11026"><span><br></span></div><div id=3D"y=
ui_3_16_0_ym19_1_1541431695536_11025"><div id=3D"yui_3_16_0_ym19_1_15414316=
95536_11024"><span></span>Steve<br><br></div><div></div><div class=3D"qtdSe=
parateBR"><br><br></div><div class=3D"yahoo_quoted" id=3D"yui_3_16_0_ym19_1=
_1541431695536_11000"> <div id=3D"yui_3_16_0_ym19_1_1541431695536_10999" s=
tyle=3D"font-family: times new roman, new york, times, serif;font-size: 16p=
x;"> <div id=3D"yui_3_16_0_ym19_1_1541431695536_10998" style=3D"font-family=
: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-seri=
f;font-size: 16px;"> <div id=3D"yui_3_16_0_ym19_1_1541431695536_10997" dir=
=3D"ltr"> <font id=3D"yui_3_16_0_ym19_1_1541431695536_10996" face=3D"Arial"=
size=3D"2"> <hr size=3D"1" id=3D"yui_3_16_0_ym19_1_1541431695536_11023"> <=
b><span style=3D"font-weight: bold;">From:</span></b> "Tom Collins tom@toml=
ogic.com [rabbit-semi]" <[email protected]><br> <b><span st=
yle=3D"font-weight: bold;">To:</span></b> [email protected] <br> =
<b><span style=3D"font-weight: bold;">Sent:</span></b> Monday, November 5, =
2018 1:36 PM<br> <b id=3D"yui_3_16_0_ym19_1_1541431695536_11031"><span id=
=3D"yui_3_16_0_ym19_1_1541431695536_11030" style=3D"font-weight: bold;">Sub=
ject:</span></b> Re: [rabbit-semi] UDP Broadcast<br> </font> </div> <div cl=
ass=3D"y_msg_container" id=3D"yui_3_16_0_ym19_1_1541431695536_11006"><br><d=
iv id=3D"yiv3149453054"><div id=3D"yui_3_16_0_ym19_1_1541431695536_11005">
<span> </span>
<div id=3D"yiv3149453054ygrp-mlmsg">
<div id=3D"yiv3149453054ygrp-msg">
<div id=3D"yiv3149453054ygrp-text">
=20=20=20=20=20=20
=20=20=20=20=20=20
<div id=3D"yui_3_16_0_ym19_1_1541431695536_11022">Thanks Mircea for k=
nowing the stack better than I!</div><div class=3D"yiv3149453054class" id=
=3D"yui_3_16_0_ym19_1_1541431695536_11021"><br class=3D"yiv3149453054class"=
clear=3D"none"></div><div class=3D"yiv3149453054class" id=3D"yui_3_16_0_ym=
19_1_1541431695536_11019">So you can call udp_peek() to get a copy of the _=
udp_datagram_info before calling udp_recv(). You don=E2=80=99t need t=
o use udp_recvfrom(), because you=E2=80=99ll already have the remote IP and=
port from that structure.</div><div class=3D"yiv3149453054class" id=3D"yui=
_3_16_0_ym19_1_1541431695536_11004"><br class=3D"yiv3149453054class" clear=
=3D"none"><div class=3D"yiv3149453054class" id=3D"yui_3_16_0_ym19_1_1541431=
695536_11012">
<span class=3D"yiv3149453054Apple-style-span" style=3D"color: rgb(0, 0, 0);=
text-indent: 0px;letter-spacing: normal;font-family: Helvetica;font-size: 1=
2px;font-style: normal;font-variant: normal;font-weight: normal;border-coll=
apse: separate;"></span><div class=3D"yiv3149453054class" id=3D"yui_3_16_0_=
ym19_1_1541431695536_11020">-Tom</div><br class=3D"yiv3149453054Apple-inter=
change-newline" clear=3D"none">
</div>
<div id=3D"yui_3_16_0_ym19_1_1541431695536_11003"><br class=3D"yiv314945305=
4class" clear=3D"none"><blockquote class=3D"yiv3149453054class" id=3D"yui_3=
_16_0_ym19_1_1541431695536_11002" type=3D"cite"><div class=3D"yiv3149453054=
class" id=3D"yui_3_16_0_ym19_1_1541431695536_11001">On Nov 5, 2018, at 9:05=
AM, <a class=3D"yiv3149453054class" href=3D"mailto:[email protected]" targ=
et=3D"_blank" rel=3D"nofollow" shape=3D"rect" ymailto=3D"mailto:mircea@neac=
su.net">[email protected]</a> [rabbit-semi] <<a class=3D"yiv3149453054cl=
ass" href=3D"mailto:[email protected]" target=3D"_blank" rel=3D"n=
ofollow" shape=3D"rect" ymailto=3D"mailto:[email protected]">rabb=
[email protected]</a>> wrote:</div><br class=3D"yiv3149453054Apple=
-interchange-newline" clear=3D"none"><div class=3D"yiv3149453054class" id=
=3D"yui_3_16_0_ym19_1_1541431695536_11008"><div class=3D"yiv3149453054class=
" id=3D"yiv3149453054ygrp-mlmsg" style=3D"text-transform: none;text-indent:=
0px;letter-spacing: normal;font-family: Arial, helvetica, clean, sans-seri=
f;font-size: 13px;font-style: normal;font-weight: normal;word-spacing: 0px;=
white-space: normal;"><div class=3D"yiv3149453054class" id=3D"yiv3149453054=
ygrp-msg"><div class=3D"yiv3149453054class" id=3D"yiv3149453054ygrp-text" s=
tyle=3D"font-family: Georgia;"><div class=3D"yiv3149453054class" id=3D"yui_=
3_16_0_ym19_1_1541431695536_11007" style=3D"margin: 0px 0px 1em;">Have look=
ed into udp_peek function:</div><div class=3D"yiv3149453054class"><br class=
=3D"yiv3149453054class" clear=3D"none"><div class=3D"yiv3149453054class"><d=
iv class=3D"yiv3149453054class"><span class=3D"yiv3149453054class" style=3D=
"word-spacing: normal;">SYNTAX: </span><span class=
=3D"yiv3149453054class" style=3D"word-spacing: normal;">int udp_peek(udp_So=
cket* s, _udp_datagram_info far * udi)</span><br class=3D"yiv3149453054clas=
s" clear=3D"none"></div><div class=3D"yiv3149453054class"><span class=3D"yi=
v3149453054class"><br class=3D"yiv3149453054class" clear=3D"none"></span></=
div><div class=3D"yiv3149453054class"><span class=3D"yiv3149453054class">KE=
YWORDS: tcpip, socket</span></div><div class=3D"yiv3149453054c=
lass"><span class=3D"yiv3149453054class"><br class=3D"yiv3149453054class" c=
lear=3D"none"></span></div><div class=3D"yiv3149453054class"><span class=3D=
"yiv3149453054class">DESCRIPTION: Look into the UDP socket receive buffer t=
o see if there is</span></div><div class=3D"yiv3149453054class"><span class=
=3D"yiv3149453054class" style=3D"word-spacing: normal;">  =
; a datagram ready to be read using udp_recvfrom=
(). This</span></div><div class=3D"yiv3149453054class"><span class=3D=
"yiv3149453054class"> functi=
on does not remove the datagram from the buffer,</span></div><div class=3D"=
yiv3149453054class"><span class=3D"yiv3149453054class"> =
but it allows the application to determine the =
full</span></div><div class=3D"yiv3149453054class"><span class=3D"yiv314945=
3054class"> details about th=
e next datagram, including whether the</span></div><div class=3D"yiv3149453=
054class"><span class=3D"yiv3149453054class"> &n=
bsp; datagram was broadcast..</span></div><div class=3D"yiv314=
9453054class"><span class=3D"yiv3149453054class"><br class=3D"yiv3149453054=
class" clear=3D"none"></span></div><div class=3D"yiv3149453054class"><span =
class=3D"yiv3149453054class"> &nbs=
p;The returned data is put in *udi. udi must point to a</span></div><=
div class=3D"yiv3149453054class"><span class=3D"yiv3149453054class"> =
valid data structure, or be NULL.&=
nbsp; The data structure is</span></div><div class=3D"yiv3149453054class"><=
span class=3D"yiv3149453054class"> =
typedef struct {</span></div><div class=3D"yiv31494530=
54class"><span class=3D"yiv3149453054class"><span class=3D"yiv3149453054cla=
ss" style=3D"white-space: pre;"> </span> =
longword remip; // Remote host IP address</span></div><d=
iv class=3D"yiv3149453054class"><span class=3D"yiv3149453054class"><span cl=
ass=3D"yiv3149453054class" style=3D"white-space: pre;"> </span>  =
; word remport; // Remo=
te host port number</span></div><div class=3D"yiv3149453054class"><span cla=
ss=3D"yiv3149453054class"><span class=3D"yiv3149453054class" style=3D"white=
-space: pre;"> </span> int &n=
bsp; len; // Length of datagram</span></div><div=
class=3D"yiv3149453054class"><span class=3D"yiv3149453054class"><span clas=
s=3D"yiv3149453054class" style=3D"white-space: pre;"> </span> =
word flags; // F=
lags as follows:</span></div><div class=3D"yiv3149453054class"><span class=
=3D"yiv3149453054class"><span class=3D"yiv3149453054class" style=3D"white-s=
pace: pre;"> </span> =
<span class=3D"yiv3149453054class" style=3D"white-space: pre;"> </span>// T=
his is an ICMP error entry</span></div><div class=3D"yiv3149453054class"><s=
pan class=3D"yiv3149453054class"><span class=3D"yiv3149453054class" style=
=3D"white-space: pre;"> </span> &n=
bsp; #define UDI_ICMP_ERROR<span class=3D"yiv3149453054class" style=
=3D"white-space: pre;"> </span>0x0001</span></div><div class=3D"yiv31494530=
54class"><span class=3D"yiv3149453054class"><span class=3D"yiv3149453054cla=
ss" style=3D"white-space: pre;"> </span> =
// Type-of-service bit mask</span></div><div class=3D"=
yiv3149453054class"><span class=3D"yiv3149453054class"><span class=3D"yiv31=
49453054class" style=3D"white-space: pre;"> </span> &nb=
sp; #define UDI_TOS_MASK &n=
bsp;0x001E</span></div><div class=3D"yiv3149453054class"><span class=3D"yiv=
3149453054class"><span class=3D"yiv3149453054class" style=3D"white-space: p=
re;"> </span> // Har=
dware address field is valid</span></div><div class=3D"yiv3149453054class">=
<span class=3D"yiv3149453054class"><span class=3D"yiv3149453054class" style=
=3D"white-space: pre;"> </span> &n=
bsp; #define UDI_HWA_VALID<span class=3D"yiv3149453054class" style=
=3D"white-space: pre;"> </span>0x0020</span></div><div class=3D"yiv3149453=
054class"><span class=3D"yiv3149453054class"><span class=3D"yiv3149453054cl=
ass" style=3D"white-space: pre;"> </span> =
// Received on broadcast link-layer address.</span></=
div><div class=3D"yiv3149453054class"><span class=3D"yiv3149453054class">&n=
bsp; =
#define UDI_BROADCAST_LL<span class=3D"yiv3149453054class" style=3D"=
white-space: pre;"> </span>0x0040</span></div><div class=3D"yiv3149453054cl=
ass"><span class=3D"yiv3149453054class"> =
// Received on broadcast n=
etwork (IP) address.</span></div><div class=3D"yiv3149453054class"><span cl=
ass=3D"yiv3149453054class"> =
#define UDI_BROADCAST_IP<span class=3D"=
yiv3149453054class" style=3D"white-space: pre;"> </span>0x0080</span></div>=
<div class=3D"yiv3149453054class"><span class=3D"yiv3149453054class"><span =
class=3D"yiv3149453054class" style=3D"white-space: pre;"> </span> &nb=
sp; // Received on broadcast link=
-layer address.</span></div><div class=3D"yiv3149453054class"><span class=
=3D"yiv3149453054class"> &n=
bsp; #define UDI_MULTICAST_LL<span class=3D"yiv=
3149453054class" style=3D"white-space: pre;"> </span>0x0100</span></div><di=
v class=3D"yiv3149453054class"><span class=3D"yiv3149453054class"> &n=
bsp; =
// Received on broadcast network (IP) address.</span></div><div class=3D"yi=
v3149453054class"><span class=3D"yiv3149453054class"> &=
nbsp; #define UDI_M=
ULTICAST_IP<span class=3D"yiv3149453054class" style=3D"white-space: pre;"> =
</span>0x0200</span></div><div class=3D"yiv3149453054class"><span class=3D"=
yiv3149453054class"> =
byte iface; // Interface numb=
er</span></div><div class=3D"yiv3149453054class"><span class=3D"yiv31494530=
54class"> &nb=
sp;byte hwa[6]; // Peer's hardware (Ethernet=
) MAC</span></div><div class=3D"yiv3149453054class"><span class=3D"yiv31494=
53054class"> }=
_udp_datagram_info;</span></div><div class=3D"yiv3149453054class"><span cl=
ass=3D"yiv3149453054class"><br class=3D"yiv3149453054class" clear=3D"none">=
</span></div><div class=3D"yiv3149453054class"><span class=3D"yiv3149453054=
class">PARAMETER1: UDP socket to check</span></div><div class=3D"yiv3=
149453054class"><span class=3D"yiv3149453054class">PARAMETER2: Where =
to store the returned information.</span></div><div class=3D"yiv3149453054c=
lass"><span class=3D"yiv3149453054class"><br class=3D"yiv3149453054class" c=
lear=3D"none"></span></div><div class=3D"yiv3149453054class"><span class=3D=
"yiv3149453054class">RETURN VALUE: 1 a normal datagram is=
in the receive buffer</span></div><div class=3D"yiv3149453054class"><span =
class=3D"yiv3149453054class"> &nbs=
p; 0 no datagram waiting</span></div><div class=3D"yiv31494530=
54class"><span class=3D"yiv3149453054class"> &nb=
sp; -3 an ICMP error message is in the receive bu=
ffer - this</span></div><div class=3D"yiv3149453054class"><span class=3D"yi=
v3149453054class" style=3D"word-spacing: normal;"> &nbs=
p; will only be returned if udi pa=
rameter is not NULL.</span></div><div class=3D"yiv3149453054class"><br clas=
s=3D"yiv3149453054class" clear=3D"none"></div><div class=3D"yiv3149453054cl=
ass">Cheers,</div><div class=3D"yiv3149453054class">Mircea</div><div class=
=3D"yiv3149453054class"><br class=3D"yiv3149453054class" clear=3D"none"></d=
iv></div></div><div class=3D"yiv3149453054class" style=3D"margin: 0px 0px 1=
em;"><br class=3D"yiv3149453054webkit-block-placeholder" clear=3D"none"></d=
iv></div><div class=3D"yiv3149453054class" style=3D"color: rgb(255, 255, 25=
5);min-height: 0px;"></div></div></div></div></blockquote></div><br class=
=3D"yiv3149453054class" clear=3D"none"></div>
</div>
=20=20=20=20=20
=20=20=20=20
<div style=3D"color: rgb(255, 255, 255);min-height: 0px;"></div></div>
</div></div><br><br></div> </div> </div> </div></div></div></div></p>
</div>
=20=20=20=20=20
<!--~-|**|PrettyHtmlStart|**|-~-->
<div style=3D"color: #fff; height: 0;">__._,_.___</div>
=20=20=20=20=20=20=20=20=20=20
=20=20
=20
=20=20=20=20
<div style=3D"clear:both"> </div>
<div id=3D"fromDMARC" style=3D"margin-top: 10px;">
<hr style=3D"height:2px ; border-width:0; color:#E3E3E3; background=
-color:#E3E3E3;">
Posted by: Steve Trigero <seecwriter-/[email protected]> <hr st=
yle=3D"height:2px ; border-width:0; color:#E3E3E3; background-color:#E3E3E3=
;">
</div>
<div style=3D"clear:both"> </div>
<table cellspacing=3D4px style=3D"margin-top: 10px; margin-bottom: 10px=
; color: #2D50FD;">
<tbody>
<tr>
<td style=3D"font-size: 12px; font-family: arial; font-weight: bo=
ld; padding: 7px 5px 5px;" >
<a style=3D"text-decoration: none; color: #2D50FD=
" href=3D"https://groups.yahoo.com/neo/groups/rabbit-semi/conversations/mes=
sages/42507;_ylc=3DX3oDMTJxcnIwM251BF9TAzk3MzU5NzE0BGdycElkAzIzMDczMTYEZ3Jw=
c3BJZAMxNzA2NTU0MjA1BG1zZ0lkAzQyNTA3BHNlYwNmdHIEc2xrA3JwbHkEc3RpbWUDMTU0MTQ=
2MDk4Ng--?act=3Dreply&messageNum=3D42507">Reply via web post</a>
</td>
<td>•</td>
<td style=3D"font-size: 12px; font-family: arial; padding: 7px 5p=
x 5px;" >
<a href=3D"mailto:seecwriter-/[email protected]?subject=3DRe%3A%20%5Brab=
bit-semi%5D%20UDP%20Broadcast" style=3D"text-decoration: none; color: #2D50=
FD;">
Reply to sender </a>
</td>
<td>•</td>
<td style=3D"font-size: 12px; font-family: arial; padding: 7px 5p=
x 5px;">
<a href=3D"mailto:[email protected]?subject=3DRe%3A%2=
0%5Brabbit-semi%5D%20UDP%20Broadcast" style=3D"text-decoration: none; color=
: #2D50FD">
Reply to group </a>
</td>
<td>•</td>
<td style=3D"font-size: 12px; font-family: arial; padding: 7px 5p=
x 5px;" >
<a href=3D"https://groups.yahoo.com/neo/groups/rabbit-semi/conv=
ersations/newtopic;_ylc=3DX3oDMTJlNGE0bjBmBF9TAzk3MzU5NzE0BGdycElkAzIzMDczM=
TYEZ3Jwc3BJZAMxNzA2NTU0MjA1BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTU0MTQ2MDk4Ng--=
" style=3D"text-decoration: none; color: #2D50FD">Start a New Topic</a>
</td>
<td>•</td>
<td style=3D"font-size: 12px; font-family: arial; padding: 7px 5p=
x 5px;color: #2D50FD;" >
<a href=3D"https://groups.yahoo.com/neo/groups/=
rabbit-semi/conversations/topics/42500;_ylc=3DX3oDMTM2dHRnbTIxBF9TAzk3MzU5N=
zE0BGdycElkAzIzMDczMTYEZ3Jwc3BJZAMxNzA2NTU0MjA1BG1zZ0lkAzQyNTA3BHNlYwNmdHIE=
c2xrA3Z0cGMEc3RpbWUDMTU0MTQ2MDk4NgR0cGNJZAM0MjUwMA--" style=3D"text-decorat=
ion: none; color: #2D50FD;">Messages in this topic</a>
(7)
</td>
</tr>
</tbody>
</table>
=20=20=20=20=20=20=20=20
<div id=3D"megaphoneModule">
<hr style=3D"height:2px ; border-width:0; color:#E3E3E3; backgr=
ound-color:#E3E3E3;">
<div>
<div class=3D"stream" style=3D"margin-bottom:10px;">
<div style=3D"background-color:white;">
<div class=3D"sn-img" style=3D"display:inline;"><img name=3D"tn=
_file" style=3D"padding:0px 10px;vertical-align:top;margin-top:5px;" src=3D=
"https://s.yimg.com/ru/static/images/yg/img/megaphone/1464031581_phpFA8bON"=
height=3D"82" width=3D"82"></div>
<div class=3D"mod-txt" style=3D"display:inline-block;">
<a rel=3D"nofollow" name=3D"sub_url" target=3D"_blank" href=
=3D"https://yho.com/1wwmgg" style=3D"color:#0000FF;display:block;margin-lef=
t:5px;text-decoration:none;"><span style=3D"font-size:15px;">Have you tried=
the highest rated email app?</span></a>
<div style=3D"max-width:530px;padding:2px 5px;">With 4.5 st=
ars in iTunes, the Yahoo Mail app is the highest rated email app on the mar=
ket. What are you waiting for? Now you can access all your inboxes (Gmail, =
Outlook, AOL and more) in one place. Never delete an email again with 1000G=
B of free cloud storage.</div>
</div>
</div>
</div> </div>=20=20
=20=20=20=20=20
<hr style=3D"height:2px ; border-width:0; color:#E3E3E3; background-col=
or:#E3E3E3;">
</div>
<!------- Start Nav Bar ------>
=20
<!-- |**|begin egp html banner|**| -->
<div id=3D"ygrp-vital" style=3D"background-color: #f2f2f2; font-family: Ver=
dana; font-size: 10px; margin-bottom: 10px; padding: 10px;">
<span id=3D"vithd" style=3D"font-weight: bold; color: #333; text-transf=
orm: uppercase; "><a href=3D"https://groups.yahoo.com/neo/groups/rabbit-sem=
i/info;_ylc=3DX3oDMTJlc2lhams2BF9TAzk3MzU5NzE0BGdycElkAzIzMDczMTYEZ3Jwc3BJZ=
AMxNzA2NTU0MjA1BHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTU0MTQ2MDk4Ng--" style=3D"t=
ext-decoration: none;">Visit Your Group</a></span>
<ul style=3D"list-style-type: none; margin: 0; padding: 0; display: in=
line;">
</ul>
</div>
<div id=3D"ft" style=3D"font-family: Arial; font-size: 11px; margin-top: 5p=
x; padding: 0 2px 0 0; clear: both;">
<a href=3D"https://groups.yahoo.com/neo;_ylc=3DX3oDMTJkbmhxOGg4BF9TAzk3ND=
c2NTkwBGdycElkAzIzMDczMTYEZ3Jwc3BJZAMxNzA2NTU0MjA1BHNlYwNmdHIEc2xrA2dmcARzd=
GltZQMxNTQxNDYwOTg2" style=3D"float: left;"><img src=3D"http://l.yimg.com/r=
u/static/images/yg/img/email/new_logo/logo-groups-137x15.png" height=3D"15"=
width=3D"137" alt=3D"Yahoo! Groups" style=3D"border: 0;"/></a>
<div style=3D"color: #747575; float: right;"> • <a href=3D"https://i=
nfo.yahoo.com/privacy/us/yahoo/groups/details.html" style=3D"text-decoratio=
n: none;">Privacy</a> • <a href=3D"mailto:rabbit-semi-unsubscribe@yaho=
ogroups.com?subject=3DUnsubscribe" style=3D"text-decoration: none;">Unsubsc=
ribe</a> • <a href=3D"https://info.yahoo.com/legal/us/yahoo/utos/terms=
/" style=3D"text-decoration: none;">Terms of Use</a> </div>
</div>
<br>
<!-- |**|end egp html banner|**| -->
</div> <!-- ygrp-msg -->
=20
<!-- Sponsor -->
<!-- |**|begin egp html banner|**| -->
<div id=3D"ygrp-sponsor" style=3D"width:160px; float:right; clear:none; m=
argin:0 0 25px 0; background: #fff;">
<!-- Start Recommendations -->
<div id=3D"ygrp-reco">
</div>
<!-- End Recommendations -->
=20=20=20=20=20=20=20=20=20=20
<!-- |**|begin egp html banner|**| -->
<div id=3D"ygrp-lc">
<div id=3D"hd">SPONSORED LINKS</div>
<div id=3D"lc">
<div class=3D"ad" style=3D"color:#628C2A; font-family:Arial; font-w=
eight:bold;">
<script type=3D'text/javascript'>document.write('<a h=
ref=3D"https://us.y.atwola.com/?adlink|5113.1|221794|0|16|AdId=3D-3;BnId=3D=
0;itime=3D460986520;kvmn=3Dy100000;kvssp=3Dbrxd;kvpgcolo=3Dbf1;kvadtc%5Fdvm=
ktname=3Dunknown;kvadtc%5Fdvosplt=3Dunknown;kvadtc%5Fdvbrand=3Dunknown;kvad=
tc%5Fdvtype=3Dunknown;kvadtc%5Fdvmodel=3Dunknown;kvrepo%5Fdvosplt=3Dunknown=
;kvadtc%5Fdvosversion=3DUNKNOWN;kvadtc%5Fcrbrand=3Dwifi%5Fus;kvadtc%5Fcrcou=
ntry=3Dus;kvadtc%5Fcontype=3Dwifi;gdpr=3D0;adclntid=3D1004;spaceid=3D170655=
4205;" target=3D_top><img src=3D"https://aka-cdn.adtechus.com/images/ATColl=
apse.gif" border=3D0 alt=3D"AOL Ad" width=3D"1" height=3D"1" ></a>');
=20=20
</script>
<!--Pointguard Diagnostic Start {"FAC3.0":{
"FAC IP" : "98.139.15.56",
"AdPosition Name" : "LC1",
"sapyECPM" : "0",
"gemniECPM" : "0",
"oneMobileECPM" : "0",
"gd2NetCpm" : "0",
"issapyEmpty" : "true",
"SapyAdSize" : "",
"SapyCustomSection" : "",
"SapyUrl" : "",
" SapyFedStatus" : "federation is not configured for ad slot",
" FedStatus" : "federation is not configured for ad slot"
}--> <img alt=3D"" width=3D1 height=3D1 src=3D"htt=
p://us.adserver.yahoo.com/l?M=3D#26/D=3Dyahoo/S=3D:LC1/A=3D1234567/rand=3D2=
72575120">
</div>
<div class=3D"ad" style=3D"color:#628C2A; font-family:Arial; font-w=
eight:bold;">
<script type=3D'text/javascript'>document.write('<a h=
ref=3D"https://us.y.atwola.com/?adlink|5113.1|221794|0|16|AdId=3D-3;BnId=3D=
0;itime=3D460986525;kvmn=3Dy100000;kvssp=3Dbrxd;kvpgcolo=3Dbf1;kvadtc%5Fdvm=
ktname=3Dunknown;kvadtc%5Fdvosplt=3Dunknown;kvadtc%5Fdvbrand=3Dunknown;kvad=
tc%5Fdvtype=3Dunknown;kvadtc%5Fdvmodel=3Dunknown;kvrepo%5Fdvosplt=3Dunknown=
;kvadtc%5Fdvosversion=3DUNKNOWN;kvadtc%5Fcrbrand=3Dwifi%5Fus;kvadtc%5Fcrcou=
ntry=3Dus;kvadtc%5Fcontype=3Dwifi;gdpr=3D0;adclntid=3D1004;spaceid=3D170655=
4205;" target=3D_top><img src=3D"https://aka-cdn.adtechus.com/images/ATColl=
apse.gif" border=3D0 alt=3D"AOL Ad" width=3D"1" height=3D"1" ></a>');
=20=20
</script>
<!--Pointguard Diagnostic Start {"FAC3.0":{
"FAC IP" : "98.139.15.56",
"AdPosition Name" : "LC2",
"sapyECPM" : "0",
"gemniECPM" : "0",
"oneMobileECPM" : "0",
"gd2NetCpm" : "0",
"issapyEmpty" : "true",
"SapyAdSize" : "",
"SapyCustomSection" : "",
"SapyUrl" : "",
" SapyFedStatus" : "federation is not configured for ad slot",
" FedStatus" : "federation is not configured for ad slot"
}--> <img alt=3D"" width=3D1 height=3D1 src=3D"htt=
p://us.adserver.yahoo.com/l?M=3D#26/D=3Dyahoo/S=3D:LC2/A=3D1234567/rand=3D3=
59744983">
</div>
<div class=3D"ad" style=3D"color:#628C2A; font-family:Arial; font-w=
eight:bold;">
<script type=3D'text/javascript'>document.write('<a h=
ref=3D"https://us.y.atwola.com/?adlink|5113.1|221794|0|16|AdId=3D-3;BnId=3D=
0;itime=3D460986527;kvmn=3Dy100000;kvssp=3Dbrxd;kvpgcolo=3Dbf1;kvadtc%5Fdvm=
ktname=3Dunknown;kvadtc%5Fdvosplt=3Dunknown;kvadtc%5Fdvbrand=3Dunknown;kvad=
tc%5Fdvtype=3Dunknown;kvadtc%5Fdvmodel=3Dunknown;kvrepo%5Fdvosplt=3Dunknown=
;kvadtc%5Fdvosversion=3DUNKNOWN;kvadtc%5Fcrbrand=3Dwifi%5Fus;kvadtc%5Fcrcou=
ntry=3Dus;kvadtc%5Fcontype=3Dwifi;gdpr=3D0;adclntid=3D1004;spaceid=3D170655=
4205;" target=3D_top><img src=3D"https://aka-cdn.adtechus.com/images/ATColl=
apse.gif" border=3D0 alt=3D"AOL Ad" width=3D"1" height=3D"1" ></a>');
=20=20
</script>
<!--Pointguard Diagnostic Start {"FAC3.0":{
"FAC IP" : "98.139.15.56",
"AdPosition Name" : "LC3",
"sapyECPM" : "0",
"gemniECPM" : "0",
"oneMobileECPM" : "0",
"gd2NetCpm" : "0",
"issapyEmpty" : "true",
"SapyAdSize" : "",
"SapyCustomSection" : "",
"SapyUrl" : "",
" SapyFedStatus" : "federation is not configured for ad slot",
" FedStatus" : "federation is not configured for ad slot"
}--> <img alt=3D"" width=3D1 height=3D1 src=3D"htt=
p://us.adserver.yahoo.com/l?M=3D#26/D=3Dyahoo/S=3D:LC3/A=3D1234567/rand=3D1=
27942227">
</div>
</div>
</div>
=20=20=20=20
<!-- |**|end egp html banner|**| -->
=20=20
</div> <!-- |**|end egp html banner|**| -->
<div style=3D"clear:both; color: #FFF; font-size:1px;">.</div>
</div>
<img src=3D"http://geo.yahoo.com/serv?s=3D97359714/grpId=3D2307316/grpspI=
d=3D1706554205/msgId=3D42507/stime=3D1541460986/nc1=3D1234567/nc2=3D2/nc3=
=3D3" width=3D"1" height=3D"1"> <br>
<img src=3D"http://y.analytics.yahoo.com/fpc.pl?ywarid=3D515FB27823A7407E&a=
=3D10001310322279&js=3Dno&resp=3Dimg&cf12=3DCP" width=3D"1" height=3D"1">=20
<div style=3D"color: #fff; height: 0;">__,_._,___</div>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</body>
<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
<style type=3D"text/css">
<!--
#ygrp-mkp {
border: 1px solid #d8d8d8;
font-family: Arial;
margin: 10px 0;
padding: 0 10px;
}
#ygrp-mkp hr {
border: 1px solid #d8d8d8;
}
#ygrp-mkp #hd {
color: #628c2a;
font-size: 85%;
font-weight: 700;
line-height: 122%;
margin: 10px 0;
}
#ygrp-mkp #ads {
margin-bottom: 10px;
}
#ygrp-mkp .ad {
padding: 0 0;
}
#ygrp-mkp .ad p {
margin: 0;
}
#ygrp-mkp .ad a {
color: #0000ff;
text-decoration: none;
}
#ygrp-sponsor #ygrp-lc {
font-family: Arial;
}
#ygrp-sponsor #ygrp-lc #hd {
margin: 10px 0px;
font-weight: 700;
font-size: 78%;
line-height: 122%;
}
#ygrp-sponsor #ygrp-lc .ad {
margin-bottom: 10px;
padding: 0 0;
}
#actions {
font-family: Verdana;
font-size: 11px;
padding: 10px 0;
}
#activity {
background-color: #e0ecee;
float: left;
font-family: Verdana;
font-size: 10px;
padding: 10px;
}
#activity span {
font-weight: 700;
}
#activity span:first-child {
text-transform: uppercase;
}
#activity span a {
color: #5085b6;
text-decoration: none;
}
#activity span span {
color: #ff7900;
}
#activity span .underline {
text-decoration: underline;
}
.attach {
clear: both;
display: table;
font-family: Arial;
font-size: 12px;
padding: 10px 0;
width: 400px;
}
.attach div a {
text-decoration: none;
}
.attach img {
border: none;
padding-right: 5px;
}
.attach label {
display: block;
margin-bottom: 5px;
}
.attach label a {
text-decoration: none;
}
=20=20
blockquote {
margin: 0 0 0 4px;
}
.bold {
font-family: Arial;
font-size: 13px;
font-weight: 700;
}
.bold a {
text-decoration: none;
}
dd.last p a {
font-family: Verdana;
font-weight: 700;
}
dd.last p span {
margin-right: 10px;
font-family: Verdana;
font-weight: 700;
}
dd.last p span.yshortcuts {
margin-right: 0;
}
div.attach-table div div a {
text-decoration: none;
}
div.attach-table {
width: 400px;
}
div.file-title a, div.file-title a:active, div.file-title a:hover, div.fi=
le-title a:visited {
text-decoration: none;
}
div.photo-title a, div.photo-title a:active, div.photo-title a:hover, div=
..photo-title a:visited {
text-decoration: none;
}
div#ygrp-mlmsg #ygrp-msg p a span.yshortcuts {
font-family: Verdana;
font-size: 10px;
font-weight: normal;
}
.green {
color: #628c2a;
}
.MsoNormal {
margin: 0 0 0 0;
}
o {
font-size: 0;
}
#photos div {
float: left;
width: 72px;
}
#photos div div {
border: 1px solid #666666;
height: 62px;
overflow: hidden;
width: 62px;
}
#photos div label {
color: #666666;
font-size: 10px;
overflow: hidden;
text-align: center;
white-space: nowrap;
width: 64px;
}
#reco-category {
font-size: 77%;
}
#reco-desc {
font-size: 77%;
}
.replbq {
margin: 4px;
}
#ygrp-actbar div a:first-child {
/* border-right: 0px solid #000;*/
margin-right: 2px;
padding-right: 5px;
}
#ygrp-mlmsg {
font-size: 13px;
font-family: Arial, helvetica,clean, sans-serif;
*font-size: small;
*font: x-small;
}
#ygrp-mlmsg table {
font-size: inherit;
font: 100%;
}
#ygrp-mlmsg select, input, textarea {
font: 99% Arial, Helvetica, clean, sans-serif;
}
#ygrp-mlmsg pre, code {
font:115% monospace;
*font-size:100%;
}
#ygrp-mlmsg * {
line-height: 1.22em;
}
#ygrp-mlmsg #logo {
padding-bottom: 10px;
}
#ygrp-msg p a {
font-family: Verdana;
}
#ygrp-msg p#attach-count span {
color: #1E66AE;
font-weight: 700;
}
#ygrp-reco #reco-head {
color: #ff7900;
font-weight: 700;
}
#ygrp-reco {
margin-bottom: 20px;
padding: 0px;
}
#ygrp-sponsor #ov li a {
font-size: 130%;
text-decoration: none;
}
#ygrp-sponsor #ov li {
font-size: 77%;
list-style-type: square;
padding: 6px 0;
}=20
#ygrp-sponsor #ov ul {
margin: 0;
padding: 0 0 0 8px;
}
#ygrp-text {
font-family: Georgia;
}
#ygrp-text p {
margin: 0 0 1em 0;
}
#ygrp-text tt {
font-size: 120%;
}
#ygrp-vital ul li:last-child {
border-right: none !important;=20
}=20
-->
</style>
</head>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</html>
<!-- end group email -->
------=_Part_753198_1970677049.1541460978876--