1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 %% Name: dgramsocket.tex
3 %% Purpose: wxSocket docs
4 %% Author: Angel Vidal Veiga (kry@amule.org)
8 %% Copyright: (c) wxWidgets team
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 % ---------------------------------------------------------------------------
13 % CLASS wxDatagramSocket
14 % ---------------------------------------------------------------------------
16 \section{\class{wxDatagramSocket
}}\label{wxdatagramsocket
}
18 \wxheading{Derived from
}
20 \helpref{wxSocketBase
}{wxsocketbase
}
22 \wxheading{Include files
}
26 \latexignore{\rtfignore{\wxheading{Members
}}}
28 % ---------------------------------------------------------------------------
30 % ---------------------------------------------------------------------------
34 \membersection{wxDatagramSocket::wxDatagramSocket
}\label{wxdatagramsocketctor
}
36 \func{}{wxDatagramSocket
}{\param{wxSocketFlags
}{ flags = wxSOCKET
\_NONE}}
40 \wxheading{Parameters
}
42 \docparam{flags
}{Socket flags (See
\helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
})
}
47 \membersection{wxDatagramSocket::
\destruct{wxDatagramSocket
}}\label{wxdatagramsocketdtor
}
49 \func{}{\destruct{wxDatagramSocket
}}{\void}
51 Destructor. Please see
\helpref{wxSocketBase::Destroy
}{wxsocketbasedestroy
}.
56 \membersection{wxDatagramSocket::ReceiveFrom
}\label{wxdatagramsocketreceivefrom
}
58 \func{wxDatagramSocket\&
}{ReceiveFrom
}{\param{wxSockAddress\&
}{ address
},
\param{void *
}{ buffer
},
\param{wxUint32
}{ nbytes
}}
60 This function reads a buffer of
{\it nbytes
} bytes from the socket.
62 Use
\helpref{LastCount
}{wxsocketbaselastcount
} to verify the number of bytes actually read.
64 Use
\helpref{Error
}{wxsocketbaseerror
} to determine if the operation succeeded.
66 \wxheading{Parameters
}
68 \docparam{address
}{Any address - will be overwritten with the address of the peer that sent that data.
}
70 \docparam{buffer
}{Buffer where to put read data.
}
72 \docparam{nbytes
}{Number of bytes.
}
74 \wxheading{Return value
}
76 Returns a reference to the current object, and the address of the peer that sent the data on address param.
80 \helpref{wxSocketBase::Error
}{wxsocketbaseerror
},
81 \helpref{wxSocketBase::LastError
}{wxsocketbaselasterror
},
82 \helpref{wxSocketBase::LastCount
}{wxsocketbaselastcount
},
83 \helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
},
88 \membersection{wxDatagramSocket::SendTo
}\label{wxdatagramsocketsendto
}
90 \func{wxDatagramSocket\&
}{SendTo
}{\param{const wxSockAddress\&
}{ address
},
\param{const void *
}{ buffer
},
\param{wxUint32
}{ nbytes
}}
92 This function writes a buffer of
{\it nbytes
} bytes to the socket.
94 Use
\helpref{LastCount
}{wxsocketbaselastcount
} to verify the number of bytes actually wrote.
96 Use
\helpref{Error
}{wxsocketbaseerror
} to determine if the operation succeeded.
98 \wxheading{Parameters
}
100 \docparam{address
}{The address of the destination peer for this data.
}
102 \docparam{buffer
}{Buffer where read data is.
}
104 \docparam{nbytes
}{Number of bytes.
}
106 \wxheading{Return value
}
108 Returns a reference to the current object.
112 \helpref{wxSocketBase::Error
}{wxsocketbaseerror
},
113 \helpref{wxSocketBase::LastError
}{wxsocketbaselasterror
},
114 \helpref{wxSocketBase::LastCount
}{wxsocketbaselastcount
},
115 \helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
}