|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: |
195 if($success) {
196 $t = sysread($client, $buff, 3);
197
198 printf("Before line %d\n", 199);
199 printf("%d bytes were read\n", $t);
200 my $char1 = substr($buff, 0, 1);
201 printf("char1 was %d\n", ord($char1));
202 if(substr($buff, 0, 1) eq "\x05") {
203 if(ord(substr($buff, 2, 1)) == 0) { # reserved
204 my($host, $raw_host) = socks_get_host($client);
205 if(!$host) {
206 # CJ
207 print "Could not get host\n";
208 return;
209 }
210 else {
211 print "Got host\n";
212 }
213 my($port, $raw_port) = socks_get_port($client);
214 if(!$port) {
215 # CJ
216 print "Could not get port\n";
217 return;
218 }
219 else {
220 print "Got port\n";
221 }
222 $ord = ord(substr($buff, 1, 1));
223 $buff = "\x05\x00\x00".$raw_host.$raw_port;
224 syswrite($client, $buff, length($buff));
225 socks_do($ord, $client, $host, $port);
226 }
227 }
228 }
|
Advertisement
| Hall of Fame |