~ubuntu-branches/debian/stretch/libnice/stretch

« back to all changes in this revision

Viewing changes to agent/stream.h

  • Committer: Package Import Robot
  • Author(s): Simon McVittie
  • Date: 2014-05-14 12:00:13 UTC
  • mfrom: (1.2.9) (5.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20140514120013-fi5mh9bexrjnwnd8
Tags: 0.1.7-1
* New upstream release 0.1.6, 0.1.7
  - fixes various compiler warnings that were mistakenly fatal in 0.1.5
    (Closes: #743232, #743233)
  - update symbols file for new API
* Explicitly disable -Werror, even if we package a non-release in future
* Don't run tests during the build. We were ignoring failures already,
  and they sometimes hang until the buildd terminates them.
  Upstream (Olivier Crête) says they are stable enough to be useful
  for developers, but not for integration testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
  gchar remote_ufrag[NICE_STREAM_MAX_UFRAG];
73
73
  gchar remote_password[NICE_STREAM_MAX_PWD];
74
74
  gboolean gathering;
 
75
  gboolean gathering_started;
75
76
  gint tos;
76
77
};
77
78
 
78
79
 
79
80
Stream *
80
 
stream_new (guint n_components);
 
81
stream_new (guint n_components, NiceAgent *agent);
81
82
 
82
83
void
83
84
stream_free (Stream *stream);
91
92
void
92
93
stream_initialize_credentials (Stream *stream, NiceRNG *rng);
93
94
 
94
 
gboolean 
95
 
stream_restart (Stream *stream, NiceRNG *rng);
 
95
void
 
96
stream_restart (NiceAgent *agent, Stream *stream);
96
97
 
97
98
G_END_DECLS
98
99