Forum Discussion
Affa_1992
Nimbostratus
Jan 10, 2013How to process Client side's TCP Payload after SERVER_CONNECTED?
I'm trying to write an iRule to process TCP Payload.
I want to rewrite the clientside's first payload after SERVER_CONNECTED event raised.
But I log message withing every event, I found the...
kpiti_52215
Nimbostratus
Jan 10, 2013You should do something in the line:
when SERVER_CONNECTED {
TCP::collect
}
when SERVER_DATA {
TCP::payload replace 0 [TCP::payload length] "Your string"
TCP::release
}
It depends where you started the collect process, if you started it in CLIENT_ACCEPTED event it will collect the client side of data. You might also look into
serverside { TCP::collect }
clientside { TCP::collect }
to be more specific where you want the collection to happenHelp guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects