Can any one have sample for bolo potocall in C#

kelvin.thechamp

Senior Member
Joined
Apr 4, 2011
Messages
931
Reaction score
356
Can any one have sample for bolo protocol in C# ?

Bolo used myadtoolz applications and ocr's as a listening interface

the problem i facing is to convert bolo to c# i have c , perl and php source

code for it normally bolo does these

BOLOBOMB protocol, what client does:
1. connect
2. send byte [0]
3. send dword [image data size]
4. send image data
5. receive dword [will be equal to 1 on success, 0 or other on error]
6. receive dword [answer string length]
7. receive answer string

BTW its a ocr's project who using bolo and decap2bolo protocol i want to implement bolo only

I really appreciate help and can pay you if u have working example :)

thanks a lot
 
Last edited:
No one ? cmon people's its time to do some coding together :(
 
My guess is you send the image through POST data along with any other fields you need (credentials, image type, etc). In return you get a string separated by a | and you'd just split that up into an array. Maybe check out .Net's httpwebrequest and httpwebresponse to achieve the same thing as the PHP API is doing.
 
Its not an api , its bolo interface it recive first byte as a 0 , and rest things i m not able to send image after reading into buffer in this format... :(
 
Back
Top