Skip to content

Commit

Permalink
More access modifier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Trowbridge committed Apr 18, 2019
1 parent b592289 commit a457b80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/cellular/framework/AT/AT_CellularContext.h
Expand Up @@ -102,6 +102,7 @@ class AT_CellularContext : public CellularContext, public AT_CellularBase {
virtual bool get_context();
pdp_type_t string_to_pdp_type(const char *pdp_type);
AT_CellularBase::CellularProperty pdp_type_t_to_cellular_property(pdp_type_t pdp_type);
bool set_new_context(int cid);
private:
#if NSAPI_PPP_AVAILABLE
nsapi_error_t open_data_channel();
Expand All @@ -113,20 +114,19 @@ class AT_CellularContext : public CellularContext, public AT_CellularBase {
nsapi_error_t find_and_activate_context();
nsapi_error_t activate_ip_context();
void check_and_deactivate_context();
bool set_new_context(int cid);
nsapi_error_t delete_current_context();
nsapi_error_t check_operation(nsapi_error_t err, ContextOperation op);
void ciot_opt_cb(mbed::CellularNetwork::CIoT_Supported_Opt ciot_opt);
virtual void do_connect_with_retry();
private:
bool _is_connected;
ContextOperation _current_op;
char _found_apn[MAX_APN_LENGTH];
FileHandle *_fh;
rtos::Semaphore _semaphore;
rtos::Semaphore _cp_opt_semaphore;

protected:
char _found_apn[MAX_APN_LENGTH];
// flag indicating if CP was requested to be setup
bool _cp_req;
// flag indicating if Non-IP context was requested to be setup
Expand Down

0 comments on commit a457b80

Please sign in to comment.