Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 28th, 2012, 10:51 AM
forgetful_coder forgetful_coder is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2012
Posts: 1 forgetful_coder User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 55 sec
Reputation Power: 0
Writing a wrapper for a socket

Hello all,

In my project I need a class to implement the features of a socket without having to make a new instance everytime the socket gets disconnected. I hope that made sense. Anyways this is what I have so far:

Code:
import socket
import select

class foo:
	__sock = None
    
	def __init__(self):
		self.__sock = socket.socket ()
        
	def close(self):
		self.__sock.close()
    
	def connect(self, address):
		self.__sock.connect(address)
    
	def fileno(self):
		return self.__sock.fileno()
	
	def recv(self, bufsize):
		return self.__sock.recv(bufsize)

d = foo()
d.connect(("127.0.0.1", 1024))

print "Connected okay"

while True:
	input_ready, output_ready, except_ready = select.select([ d ], [], [])

	d.recv (32)


But when I call recv on my wrapper class nothing gets printed to the console. On the server side I do this:

Code:
import socket

s = socket.socket ()
s.bind (("127.0.0.1", 1024))
s.listen (4)

c = s.accept()
c[0].send ("Hello")
c[0].close ()


I hope what I'm trying to do is clear

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > Writing a wrapper for a socket

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap