Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. System Admin
  4. How to modify context of packet in Ndis?

How to modify context of packet in Ndis?

Scheduled Pinned Locked Moved System Admin
tutorialquestion
1 Posts 1 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    hanlei0000000009
    wrote on last edited by
    #1

    Ndis->passthru is a sample in WDK, passthru can get packet data by MPSendPackets()

    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!

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups