Skip to content

pkg/oonf_api: use new repo url#5111

Merged
cgundogan merged 1 commit intoRIOT-OS:masterfrom
cgundogan:pr/oonf_api/new_repo_url
Mar 19, 2016
Merged

pkg/oonf_api: use new repo url#5111
cgundogan merged 1 commit intoRIOT-OS:masterfrom
cgundogan:pr/oonf_api/new_repo_url

Conversation

@cgundogan
Copy link
Copy Markdown
Member

@cgundogan cgundogan added Type: bug The issue reports a bug / The PR fixes a bug (including spelling errors) Area: pkg Area: External package ports labels Mar 19, 2016
@OlegHahm OlegHahm added the CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR label Mar 19, 2016
@OlegHahm
Copy link
Copy Markdown
Member

If the CIs agree, I would say ACK.

@cgundogan
Copy link
Copy Markdown
Member Author

both CIs agree - GO

cgundogan added a commit that referenced this pull request Mar 19, 2016
@cgundogan cgundogan merged commit d9d94d2 into RIOT-OS:master Mar 19, 2016
@cgundogan cgundogan deleted the pr/oonf_api/new_repo_url branch March 19, 2016 23:29
miri64 added a commit to miri64/RIOT that referenced this pull request Jun 8, 2016
This change overhauls the `conn` API in the following manner:

* for every `conn` objects now also one can add a callback for asynchronous
  reception on creation
* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
miri64 added a commit to miri64/RIOT that referenced this pull request Jun 8, 2016
This change overhauls the `conn` API in the following manner:

* for every `conn` objects now also one can add a callback for asynchronous
  reception on creation
* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
miri64 added a commit to miri64/RIOT that referenced this pull request Jun 8, 2016
This change overhauls the `conn` API in the following manner:

* for every `conn` objects now also one can add a callback for asynchronous
  reception on creation
* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
miri64 added a commit to miri64/RIOT that referenced this pull request Jun 8, 2016
This change overhauls the `conn` API in the following manner:

* for every `conn` objects now also one can add a callback for asynchronous
  reception on creation
* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
miri64 added a commit to miri64/RIOT that referenced this pull request Aug 5, 2016
This change overhauls the `conn` API in the following manner:

* for every `conn` objects now also one can add a callback for asynchronous
  reception on creation
* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
miri64 added a commit to miri64/RIOT that referenced this pull request Aug 11, 2016
This change overhauls the `conn` API in the following manner:

* The source address on creation may now be `NULL`, implying an implicit bind
  when sending. This makes the `conn_find_best_source()` function unnecessary.
* a common address type for both IPv4 and IPv6 addresses was introduced
* instead of having addresses, address length and ports/protocols given
  separately a new data type called "end points" for every connectivity type is
  introduced `conn_ep_x_t`, consisting of the address, its family, an (optional)
  interface identifier (see RIOT-OS#5111) and its port/protocol
* send for connection-less communication was simplified by not requiring source
  information anymore (a stack is encouraged to find a best match itself).
  It and the interface one is supposed to send over can however be supplied by
  (optionally) providing an already created `conn` object
* TCP connection establishment was simplified: listen/connect functions were
  dropped, instead a user can either give the remote end point on creation
  (implicit connect) or omit it (implicit listen)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Area: pkg Area: External package ports CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR Type: bug The issue reports a bug / The PR fixes a bug (including spelling errors)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

All builds are failing on nhdp because of server problems with oonf git repo

3 participants