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
}
28 \helpref{wxNet
}{librarieslist
}
30 \latexignore{\rtfignore{\wxheading{Members
}}}
32 % ---------------------------------------------------------------------------
34 % ---------------------------------------------------------------------------
38 \membersection{wxDatagramSocket::wxDatagramSocket
}\label{wxdatagramsocketctor
}
40 \func{}{wxDatagramSocket
}{\param{wxSocketFlags
}{ flags = wxSOCKET
\_NONE}}
44 \wxheading{Parameters
}
46 \docparam{flags
}{Socket flags (See
\helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
})
}
51 \membersection{wxDatagramSocket::
\destruct{wxDatagramSocket
}}\label{wxdatagramsocketdtor
}
53 \func{}{\destruct{wxDatagramSocket
}}{\void}
55 Destructor. Please see
\helpref{wxSocketBase::Destroy
}{wxsocketbasedestroy
}.
60 \membersection{wxDatagramSocket::ReceiveFrom
}\label{wxdatagramsocketreceivefrom
}
62 \func{wxDatagramSocket\&
}{ReceiveFrom
}{\param{wxSockAddress\&
}{ address
},
\param{void *
}{ buffer
},
\param{wxUint32
}{ nbytes
}}
64 This function reads a buffer of
{\it nbytes
} bytes from the socket.
66 Use
\helpref{LastCount
}{wxsocketbaselastcount
} to verify the number of bytes actually read.
68 Use
\helpref{Error
}{wxsocketbaseerror
} to determine if the operation succeeded.
70 \wxheading{Parameters
}
72 \docparam{address
}{Any address - will be overwritten with the address of the peer that sent that data.
}
74 \docparam{buffer
}{Buffer where to put read data.
}
76 \docparam{nbytes
}{Number of bytes.
}
78 \wxheading{Return value
}
80 Returns a reference to the current object, and the address of the peer that sent the data on address param.
84 \helpref{wxSocketBase::Error
}{wxsocketbaseerror
},
85 \helpref{wxSocketBase::LastError
}{wxsocketbaselasterror
},
86 \helpref{wxSocketBase::LastCount
}{wxsocketbaselastcount
},
87 \helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
},
92 \membersection{wxDatagramSocket::SendTo
}\label{wxdatagramsocketsendto
}
94 \func{wxDatagramSocket\&
}{SendTo
}{\param{const wxSockAddress\&
}{ address
},
\param{const void *
}{ buffer
},
\param{wxUint32
}{ nbytes
}}
96 This function writes a buffer of
{\it nbytes
} bytes to the socket.
98 Use
\helpref{LastCount
}{wxsocketbaselastcount
} to verify the number of bytes actually wrote.
100 Use
\helpref{Error
}{wxsocketbaseerror
} to determine if the operation succeeded.
102 \wxheading{Parameters
}
104 \docparam{address
}{The address of the destination peer for this data.
}
106 \docparam{buffer
}{Buffer where read data is.
}
108 \docparam{nbytes
}{Number of bytes.
}
110 \wxheading{Return value
}
112 Returns a reference to the current object.
116 \helpref{wxSocketBase::Error
}{wxsocketbaseerror
},
117 \helpref{wxSocketBase::LastError
}{wxsocketbaselasterror
},
118 \helpref{wxSocketBase::LastCount
}{wxsocketbaselastcount
},
119 \helpref{wxSocketBase::SetFlags
}{wxsocketbasesetflags
}