Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
SOCKET server = socket(PF_INET,SOCK_STREAM, 0);  
bind(server, 7.7.7.7, sizeof(7.7.7.7) );  
listen(server, 0);


server.Poll(1, SelectMode.SelectRead);

error C2228: left of '.Poll' must have class/struct/union type

The IP is not the same but the 3 functions work correctly creating a socket that the server can listen to and send data, to the client.

I would like to poll the client, using this example but in C++.

Which object or structure can I use here with Poll()?

share|improve this question
Those three functions really work?! I want that compiler of yours. – Peyman Feb 8 '11 at 22:20
It's not out yet but if you wire me $1,000 I can get you a copy. Please send me your bank routing number. – Tommy Feb 8 '11 at 22:31

2 Answers

up vote 2 down vote accepted

Please read this Tutorial. What you are doing doesn't look close to correct.

share|improve this answer
perfect thanks. – Tommy Feb 8 '11 at 22:10

In C#, Socket is a class type, and has a Poll() method.

In C++, SOCKET is a handle type, not a class type, so there is no Poll() method available. You need to use the select() function.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.