Skip to content

Commit

Permalink
Merge pull request #95 from mitchellhansen-pedantek/issue-93
Browse files Browse the repository at this point in the history
Issue 93 - Dependency Propogation
  • Loading branch information
sepfy authored Aug 20, 2024
2 parents 4a92fcf + 17c8ae5 commit 6b61c88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/peer_connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ PeerConnectionState peer_connection_get_state(PeerConnection *pc) {
return pc->state;
}

Sctp *peer_connection_get_sctp(PeerConnection *pc) {
void* peer_connection_get_sctp(PeerConnection *pc) {

return &pc->sctp;
}
Expand Down
3 changes: 1 addition & 2 deletions src/peer_connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

#include <stdlib.h>
#include <stdint.h>
#include "sctp.h"

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -78,7 +77,7 @@ const char* peer_connection_state_to_string(PeerConnectionState state);

PeerConnectionState peer_connection_get_state(PeerConnection *pc);

Sctp *peer_connection_get_sctp(PeerConnection *pc);
void* peer_connection_get_sctp(PeerConnection *pc);

PeerConnection* peer_connection_create(PeerConfiguration *config);

Expand Down

0 comments on commit 6b61c88

Please sign in to comment.