Subject: Re: pppoe & mbuf chain
To: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
From: None <itojun@iijlab.net>
List: tech-net
Date: 06/22/2002 16:31:20
>> +	m_copydata(m, 0, sizeof(eh), (caddr_t)&eh);
>> +	m_adj(m, sizeof eh);
>any point to copy and m_adj here while you're using m_pulldown?

	you can't reliably use pointers that points outside of
	[m_data, m_data + m_len].  therefore i've copied it.

itojun