Click here to Skip to main content
15,886,873 members
Home / Discussions / System Admin
   

System Admin

 
AnswerRe: Mixing Windows with Ubuntu Pin
Albert Holguin11-Oct-12 4:34
professionalAlbert Holguin11-Oct-12 4:34 
QuestionSubnetting Pin
Ainnop24-Sep-12 20:57
Ainnop24-Sep-12 20:57 
AnswerRe: Subnetting Pin
Eddy Vluggen25-Sep-12 0:32
professionalEddy Vluggen25-Sep-12 0:32 
GeneralRe: Subnetting Pin
Richard MacCutchan25-Sep-12 6:12
mveRichard MacCutchan25-Sep-12 6:12 
QuestionSetting of internet connectin in RHL Pin
Herambashree24-Aug-12 9:54
Herambashree24-Aug-12 9:54 
AnswerRe: Setting of internet connectin in RHL Pin
Michael Martin24-Aug-12 13:51
professionalMichael Martin24-Aug-12 13:51 
AnswerRe: Setting of internet connectin in RHL Pin
Albert Holguin27-Sep-12 10:29
professionalAlbert Holguin27-Sep-12 10:29 
QuestionHow to modify context of packet in Ndis? Pin
hanlei000000000915-Aug-12 22:42
hanlei000000000915-Aug-12 22:42 
Ndis->passthru is a sample in WDK, passthru can get packet data by MPSendPackets()
C++
NdisQueryPacket( pPacket,NULL,NULL,NULL,&PacketSize);  
NdisAllocateMemory( &pPacketContent, 2000, 0,HighestAcceptableMax);  		
NdisQueryBufferSafe(pPacket->Private.Head, &pBuf, &BufLength, 32 );  
i = BufLength;  	
pNext = pPacket->Private.Head;  
for(;;)
{  		
	if(pNext == pPacket->Private.Tail)  		
		break;  		
pNext = pNext->Next;  

	if(pNext == NULL)   			
		break;  		  		

	NdisQueryBufferSafe(pNext,&pBuf,&BufLength,32);
	NdisMoveMemory(pPacketContent+i,pBuf,BufLength);
	i+=BufLength;  	
}      

DBGPRINT(("(char*)&pPacketContent[54] : %s \n",(char *)&pPacketContent[54])); 

I want to modify data of pPacketContent[55], and remake the packet.

Can anyone give me a sample? Thanks!
QuestionLaptop Connection Problem Pin
Kevin Marois14-Aug-12 8:31
professionalKevin Marois14-Aug-12 8:31 
AnswerRe: Laptop Connection Problem Pin
Albert Holguin15-Aug-12 4:53
professionalAlbert Holguin15-Aug-12 4:53 
QuestionDell Latitude 2120 Netbook - Restore Pin
JammoD8713-Aug-12 23:19
JammoD8713-Aug-12 23:19 
AnswerRe: Dell Latitude 2120 Netbook - Restore Pin
MikeC.pt21-Aug-12 23:45
MikeC.pt21-Aug-12 23:45 
QuestionHP Radia Client Log Pin
cjb11013-Aug-12 21:09
cjb11013-Aug-12 21:09 
AnswerRe: HP Radia Client Log Pin
Eddy Vluggen13-Aug-12 23:52
professionalEddy Vluggen13-Aug-12 23:52 
QuestionReinstalling windows 7 home premium Pin
mkheidzedavid10-Aug-12 23:02
mkheidzedavid10-Aug-12 23:02 
AnswerRe: Reinstalling windows 7 home premium Pin
Eddy Vluggen10-Aug-12 23:56
professionalEddy Vluggen10-Aug-12 23:56 
General(fixed, but not really) Windows 7: Horrible display. Pin
Maximilien30-Jul-12 4:12
Maximilien30-Jul-12 4:12 
GeneralRe: (fixed, but not really) Windows 7: Horrible display. Pin
Richard Andrew x6411-Aug-12 5:39
professionalRichard Andrew x6411-Aug-12 5:39 
QuestionBriefcase in Win 7 Pin
Vaclav_21-Jul-12 15:52
Vaclav_21-Jul-12 15:52 
AnswerRe: Briefcase in Win 7 Pin
Richard MacCutchan22-Jul-12 0:27
mveRichard MacCutchan22-Jul-12 0:27 
GeneralRe: Briefcase in Win 7 Pin
Vaclav_22-Jul-12 3:08
Vaclav_22-Jul-12 3:08 
GeneralRe: Briefcase in Win 7 Pin
Richard MacCutchan22-Jul-12 3:23
mveRichard MacCutchan22-Jul-12 3:23 
GeneralUNRESOLVED Re: Briefcase in Win 7 - perhaps solved in Win 10? Pin
Vaclav_22-Jul-12 13:04
Vaclav_22-Jul-12 13:04 
GeneralRe: UNRESOLVED Re: Briefcase in Win 7 - perhaps solved in Win 10? Pin
Richard MacCutchan22-Jul-12 21:18
mveRichard MacCutchan22-Jul-12 21:18 
QuestionRestoring MBR in Windows 7 - how to? Pin
Vaclav_15-Jul-12 5:36
Vaclav_15-Jul-12 5:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.