Files
Hippolyzer/pyogp/lib/base/message/net.py

22 lines
503 B
Python
Raw Normal View History

import socket
2008-07-30 20:35:58 +00:00
#maybe put this isnt' a class
2008-07-30 20:35:58 +00:00
#returns true if packet was sent successfully
def send_packet(socket, send_buffer, size, ip_addr, port):
pass
#returns message and size, or None if error
def receive_packet(socket):
2008-07-30 20:35:58 +00:00
pass
def start_udp_connection(port):
""" Starts a udp connection, returning socket and port. """
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
#error check - make sure sock is good
#will probably be other setup for this
return sock